From 6c32ea2d991054b5f97c92b237ad61f21917959f Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Thu, 8 Aug 2024 14:14:25 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=BA=20Add=20fallback=20value=20for=20`?= =?UTF-8?q?REACT=5FAPP=5FTARGETED=5FPODS=5FUPDATE=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 bc349ed3c..cbb75b108 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -41,7 +41,7 @@ spec: - name: REACT_APP_SCRIPTING_DISABLED value: '{{ .Values.tap.scriptingDisabled }}' - name: REACT_APP_TARGETED_PODS_UPDATE_DISABLED - value: '{{ .Values.tap.targetedPodsUpdateDisabled }}' + value: '{{ .Values.tap.targetedPodsUpdateDisabled | ternary "true" "false" }}' - name: REACT_APP_BPF_OVERRIDE_DISABLED value: '{{ eq .Values.tap.packetCapture "ebpf" | ternary "true" "false" }}' - name: REACT_APP_RECORDING_DISABLED