-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
How Do I Enable the Prefix Mode?
You should create the node group with max-pods-per-node
Example:
eksctl create nodegroup --cluster adil-eks-cluster --region eu-west-1 --name adil-nodes --max-pods-per-node 110If you create your node group with YAML:
managedNodeGroups:
- name: adil-nodes
instanceType: t3.medium
desiredCapacity: 2
minSize: 2
maxSize: 4
maxPodsPerNode: 110After your nodes are created with a new limit (110), you can enable prefix mode:
kubectl set env daemonset aws-node -n kube-system ENABLE_PREFIX_DELEGATION=trueReactions are currently unavailable