From 5636447de6a3059cf3a0586d3b486d53780c66ba Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Tue, 20 Aug 2019 09:41:16 -0400 Subject: [PATCH] Wrapping kubelet_extra_args in double quotes (#473) (#474) --- CHANGELOG.md | 1 + templates/userdata.sh.tpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57f2de6..30bd304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/templates/userdata.sh.tpl b/templates/userdata.sh.tpl index ba8ea28..6194a86 100644 --- a/templates/userdata.sh.tpl +++ b/templates/userdata.sh.tpl @@ -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}