You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pod limits per node have been reached (17 for t3.medium, 11 for t3.small). The limits exist due to IP address allocation from the AWS cni plugin, see here.
This should be resolved in the new version of the AWS CNI (aws-cni roadmap)
Replacing the AWS CNI
If this becomes an urgent issue, it may also be fixed by using a different CNI
May need to run kubectl delete --namespace kube-system daemonset/aws-node before adding worker nodes to uninstall the AWS cni. May also need to start kubelet without --network-plugin=cni - otherwise kubelet may refuse to start because the configured CNI plugin cannot be brought up (aws-node container is not running). Another way to remove the AWS cni is to build a custom AMI with the desired CNI plugin prefixed with 00 instead of the standard 10 so that it circumvents the loading of the AWS VPC CNI plugin. source
Things that will help:
Increase default node size
Increase default CPU request (to reach CPU limits before pod limits)
Replace argo with custom DAG management
The text was updated successfully, but these errors were encountered:
Description
Pod limits per node have been reached (17 for t3.medium, 11 for t3.small). The limits exist due to IP address allocation from the AWS cni plugin, see here.
This should be resolved in the new version of the AWS CNI (aws-cni roadmap)
Replacing the AWS CNI
If this becomes an urgent issue, it may also be fixed by using a different CNI
Alternative CNI plugins
May need to run
kubectl delete --namespace kube-system daemonset/aws-node
before adding worker nodes to uninstall the AWS cni. May also need to start kubelet without--network-plugin=cni
- otherwise kubelet may refuse to start because the configured CNI plugin cannot be brought up (aws-node container is not running). Another way to remove the AWS cni is to build a custom AMI with the desired CNI plugin prefixed with 00 instead of the standard 10 so that it circumvents the loading of the AWS VPC CNI plugin. sourceThings that will help:
The text was updated successfully, but these errors were encountered: