Skip to content

Commit

Permalink
Wrapping kubelet_extra_args in double quotes (terraform-aws-modules#473
Browse files Browse the repository at this point in the history
  • Loading branch information
nxf5025 authored and max-rocket-internet committed Aug 20, 2019
1 parent 655a75f commit 5636447
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
- Removed historical mention of adding caller's IPv4 to cluster security group (by @dpiddockcmp)
- Write your awesome change here (by @you)
- Wrapped `kubelet_extra_args` in double quotes instead of singe quotes (by @nxf5025)

# History

Expand Down
2 changes: 1 addition & 1 deletion templates/userdata.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
${pre_userdata}

# 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
${additional_userdata}

0 comments on commit 5636447

Please sign in to comment.