From c10bd2fe245002585b4629159cf6143fe1ca7e4d Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Mon, 9 Sep 2024 19:56:31 +0300 Subject: [PATCH] :hammer: Add sentry-enabled `front` env --- helm-chart/templates/06-front-deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helm-chart/templates/06-front-deployment.yaml b/helm-chart/templates/06-front-deployment.yaml index 8d1d1a36f..baf4eb5db 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -62,6 +62,8 @@ spec: value: '{{ and .Values.supportChatEnabled .Values.internetConnectivity | ternary "true" "false" }}' - name: REACT_APP_DISSECTORS_UPDATING_ENABLED value: '{{ .Values.dissectorsUpdatingEnabled | ternary "true" "false" }}' + - name: REACT_APP_SENTRY_ENABLED + value: '{{ .Values.sentryEnabled | ternary "true" "false" }}' {{- if .Values.tap.docker.overrideTag.front }} image: '{{ .Values.tap.docker.registry }}/front:{{ .Values.tap.docker.overrideTag.front }}' {{ else }}