From 32a098fabc531332328dca7dd13dbd65e8f8f8e8 Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Thu, 8 Aug 2024 14:15:10 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=BA=20Add=20fallback=20value=20for=20`?= =?UTF-8?q?REACT=5FAPP=5FSCRIPTING=5FDISABLED`=20env?= 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 cbb75b108..7281c1c10 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -39,7 +39,7 @@ spec: - name: REACT_APP_TIMEZONE value: '{{ not (eq .Values.timezone "") | ternary .Values.timezone " " }}' - name: REACT_APP_SCRIPTING_DISABLED - value: '{{ .Values.tap.scriptingDisabled }}' + value: '{{ .Values.tap.scriptingDisabled | ternary "true" "false" }}' - name: REACT_APP_TARGETED_PODS_UPDATE_DISABLED value: '{{ .Values.tap.targetedPodsUpdateDisabled | ternary "true" "false" }}' - name: REACT_APP_BPF_OVERRIDE_DISABLED