From 84b63426e4331ffba39cf16f75b135b43393cde4 Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Sun, 15 Jan 2017 11:15:16 -0700 Subject: [PATCH] fix(charts): pipeline time_zone value to quote func --- charts/controller/templates/controller-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/controller/templates/controller-deployment.yaml b/charts/controller/templates/controller-deployment.yaml index 6313ee652..edec5ef65 100644 --- a/charts/controller/templates/controller-deployment.yaml +++ b/charts/controller/templates/controller-deployment.yaml @@ -76,7 +76,7 @@ spec: - name: "IMAGE_PULL_POLICY" value: "{{ .Values.app_pull_policy }}" - name: "TZ" - value: "{{ default 'UTC' .Values.time_zone }}" + value: {{ .Values.time_zone | default "UTC" | quote }} {{- if (.Values.deploy_hook_urls) }} - name: DEIS_DEPLOY_HOOK_URLS value: "{{ .Values.deploy_hook_urls }}"