AWS CNI Prefix not propagated to nodes #196
-
Issue as reported by user:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The issue here is that you ran In the module, we work around this by running You can reset this back by doing the following:
|
Beta Was this translation helpful? Give feedback.
The issue here is that you ran
kubergrunt eks sync-core-components
manually, instead of relying on the module. Due to the way theaws-vpc-cni
is managed and how the prefix delegation is enabled, each run ofkubergrunt eks sync-core-components
ends up resetting theaws-vpc-cni
daemonset to the default initial settings (where prefix delegation is not enabled). So when you manually ran the command, it reset the settings to disable it.In the module, we work around this by running
kubergrunt eks sync-core-components
first, and then updating the daemonset with the relevant environment variables.You can reset this back by doing the following:
terragrunt apply
orterraform apply
wit…