From c27cf0b1595a11cacc0feb6c9ef8dae396a1ca74 Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Mon, 9 Sep 2024 19:57:14 +0300 Subject: [PATCH] :hammer: Add `SENTRY_ENABLED` key to configmap --- helm-chart/templates/12-config-map.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/helm-chart/templates/12-config-map.yaml b/helm-chart/templates/12-config-map.yaml index e17dbf3ad..ca2cd8d70 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -49,4 +49,5 @@ data: ENABLED_DISSECTORS: '{{ gt (len .Values.tap.enabledDissectors) 0 | ternary (join "," .Values.tap.enabledDissectors) "" }}' DISSECTORS_UPDATING_ENABLED: '{{ .Values.dissectorsUpdatingEnabled | ternary "true" "false" }}' DETECT_DUPLICATES: '{{ .Values.tap.misc.detectDuplicates | ternary "true" "false" }}' + SENTRY_ENABLED: '{{ .Values.sentryEnabled | ternary "true" "false" }}'