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
I've been trying to use the KUBELET_EXTRA_ARGS in the bootstrap_env map in order to set taints but it was not working. After some digging I see that the default user_data always sets this value therefore the exported env var is never read.
I think this should be mentioned in the README or Input descriptions. Currently, it implies all arguments to the bootstrap.sh script can be defined within in the bootstrap_env map.
⚠️ Note
Not using a custom AMI.
Versions
Terraform: 0.13.6
Provider(s): AWS: 3.63.0
Module: 17.23.0
Reproduction
Add the below bootstrap_env key-value to a node group definition. The value will not be propagated.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Description
I've been trying to use the
KUBELET_EXTRA_ARGS
in thebootstrap_env
map in order to set taints but it was not working. After some digging I see that the defaultuser_data
always sets this value therefore the exported env var is never read.SEE:
I think this should be mentioned in the README or Input descriptions. Currently, it implies all arguments to the
bootstrap.sh
script can be defined within in thebootstrap_env
map.Not using a custom AMI.
Versions
Reproduction
Add the below bootstrap_env key-value to a node group definition. The value will not be propagated.
Code Snippet to Reproduce
bootstrap_env = { KUBELET_EXTRA_ARGS = "--register-with-taints=dedicated=TEST:NoSchedule" }
Expected behavior
AFAIS,
KUBELET_EXTRA_ARGS
is not supported inbootstrap_env
The text was updated successfully, but these errors were encountered: