-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow disabling the default CNI #906
Comments
It looks like the CNI manifests for the daemonset etc is always applied: pulumi-eks/nodejs/eks/cmd/provider/cni.ts Line 233 in 7febe52
We should improve this logic to only apply it when necessary. |
Any news about it? |
I think this is possible using defaultAddonsToRemove. const cluster = new eks.Cluster('example', {
// ...
defaultAddonsToRemove: ['vpc-cni'],
// ...
}) But I haven't tried this. |
This issue was created because of the conversation in the chat, where this option didn't actually work for the cni. So I'm not sure if it was fixed |
It is currently not possible to disable the default CNI in the cluster.
I had expected that removing the CNI addon would be enough, but the CNI daemonset is still created.
We should have a top level parameter/option that disables the default CNI being installed and removes all default configuration for it
The text was updated successfully, but these errors were encountered: