From 50e9f3446af1987b0ffaa9d8ebbc6d07504a34c3 Mon Sep 17 00:00:00 2001 From: Rebecca Zanzig Date: Mon, 12 Nov 2018 12:11:33 -0800 Subject: [PATCH] Make sure that provided join information is properly quoted Especially for auto-join using go-discover, the resultant string needs to have quotes to be passed correctly. --- templates/client-daemonset.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/client-daemonset.yaml b/templates/client-daemonset.yaml index 56edd6b2a9..754183278d 100644 --- a/templates/client-daemonset.yaml +++ b/templates/client-daemonset.yaml @@ -89,7 +89,7 @@ spec: -data-dir=/consul/data \ {{- if (.Values.client.join) and (gt (len .Values.client.join) 0) }} {{- range $value := .Values.client.join }} - -retry-join={{ $value }} \ + -retry-join="{{ $value }}" \ {{- end }} {{- else }} {{- if .Values.server.enabled }}