From 585e0eb254449c70286c25c4aab038030d30df2f Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Thu, 14 Mar 2024 17:28:53 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=BA=20Handle=20empty=20`tap.timezone`?= =?UTF-8?q?=20case?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helm-chart/templates/06-front-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-chart/templates/06-front-deployment.yaml b/helm-chart/templates/06-front-deployment.yaml index e81d07e98..2e63cdf66 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -33,7 +33,7 @@ spec: - name: REACT_APP_AUTH_SAML_IDP_METADATA_URL value: '{{ not (eq .Values.tap.auth.saml.idpMetadataUrl "") | ternary .Values.tap.auth.saml.idpMetadataUrl " " }}' - name: REACT_APP_TIMEZONE - value: '{{ .Values.tap.timezone }}' + value: '{{ not (eq .Values.tap.timezone "") | ternary .Values.tap.timezone " " }}' - name: REACT_APP_REPLAY_DISABLED value: '{{ .Values.tap.replayDisabled }}' - name: REACT_APP_SCRIPTING_DISABLED