From 66432d89e61e7faab89ccb260259a46fe6bccd97 Mon Sep 17 00:00:00 2001 From: Brett Costabile Date: Fri, 4 Mar 2022 14:45:22 -0500 Subject: [PATCH] quoted extra tags arg --- charts/aws-ebs-csi-driver/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/aws-ebs-csi-driver/templates/_helpers.tpl b/charts/aws-ebs-csi-driver/templates/_helpers.tpl index f7b235831c..42fc138253 100644 --- a/charts/aws-ebs-csi-driver/templates/_helpers.tpl +++ b/charts/aws-ebs-csi-driver/templates/_helpers.tpl @@ -68,7 +68,7 @@ Convert the `--extra-tags` command line arg from a map. {{- $noop := printf "%s=%v" $key $value | append $result.pairs | set $result "pairs" -}} {{- end -}} {{- if gt (len $result.pairs) 0 -}} -{{- printf "%s=%s" "- --extra-tags" (join "," $result.pairs) -}} +{{- printf "- \"--extra-tags=%s\"" (join "," $result.pairs) -}} {{- end -}} {{- end -}}