From 1a56086320c757414f65a3ab3a801070f797552c Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Thu, 17 Sep 2020 15:08:13 +0200 Subject: [PATCH] Always quote the UI color As otherwise the value will render to `null` for the default chart value due to the `#`. --- charts/podinfo/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/podinfo/templates/deployment.yaml b/charts/podinfo/templates/deployment.yaml index 141ca15..70816aa 100644 --- a/charts/podinfo/templates/deployment.yaml +++ b/charts/podinfo/templates/deployment.yaml @@ -80,7 +80,7 @@ spec: {{- end }} {{- if .Values.ui.color }} - name: PODINFO_UI_COLOR - value: {{ .Values.ui.color }} + value: {{ quote .Values.ui.color }} {{- end }} {{- if .Values.backend }} - name: PODINFO_BACKEND_URL