Wrapping kubelet_extra_args in double quotes (#473) (#474)

This commit is contained in:
Nick Fisher
2019-08-20 09:41:16 -04:00
committed by Max Williams
parent 655a75fbd0
commit 5636447de6
2 changed files with 2 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
- Fixed errors sometimes happening during destroy due to usage of coalesce() in local.tf (by @petrikero) - Fixed errors sometimes happening during destroy due to usage of coalesce() in local.tf (by @petrikero)
- Removed historical mention of adding caller's IPv4 to cluster security group (by @dpiddockcmp) - Removed historical mention of adding caller's IPv4 to cluster security group (by @dpiddockcmp)
- Write your awesome change here (by @you) - Write your awesome change here (by @you)
- Wrapped `kubelet_extra_args` in double quotes instead of singe quotes (by @nxf5025)
# History # History

View File

@@ -4,7 +4,7 @@
${pre_userdata} ${pre_userdata}
# Bootstrap and join the cluster # Bootstrap and join the cluster
/etc/eks/bootstrap.sh --b64-cluster-ca '${cluster_auth_base64}' --apiserver-endpoint '${endpoint}' ${bootstrap_extra_args} --kubelet-extra-args '${kubelet_extra_args}' '${cluster_name}' /etc/eks/bootstrap.sh --b64-cluster-ca '${cluster_auth_base64}' --apiserver-endpoint '${endpoint}' ${bootstrap_extra_args} --kubelet-extra-args "${kubelet_extra_args}" '${cluster_name}'
# Allow user supplied userdata code # Allow user supplied userdata code
${additional_userdata} ${additional_userdata}