From 2cf7ba6ba0193a2119ce83e84deb0deebf597f77 Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Thu, 8 Aug 2024 14:13:56 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=BA=20Add=20fallback=20value=20for=20`?= =?UTF-8?q?REACT=5FAPP=5FRECORDING=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 0af20d4df..bc349ed3c 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -45,7 +45,7 @@ spec: - name: REACT_APP_BPF_OVERRIDE_DISABLED value: '{{ eq .Values.tap.packetCapture "ebpf" | ternary "true" "false" }}' - name: REACT_APP_RECORDING_DISABLED - value: '{{ .Values.tap.recordingDisabled }}' + value: '{{ .Values.tap.recordingDisabled | ternary "true" "false" }}' - name: REACT_APP_STOP_TRAFFIC_CAPTURING_DISABLED value: '{{- if and .Values.tap.stopTrafficCapturingDisabled .Values.tap.stopped -}} false