From ebb4f6e3e6ff2107642e4819a97b3a97c8b4edd6 Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Thu, 12 Mar 2026 15:26:33 +0200 Subject: [PATCH] :hammer: Add snapshots-updating-enabled config --- 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 7ca942c1f..3b495ef2b 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -77,6 +77,7 @@ data: ENABLED_DISSECTORS: '{{ gt (len .Values.tap.enabledDissectors) 0 | ternary (join "," .Values.tap.enabledDissectors) "" }}' CUSTOM_MACROS: '{{ toJson .Values.tap.customMacros }}' DISSECTORS_UPDATING_ENABLED: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}' + SNAPSHOTS_UPDATING_ENABLED: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}' DETECT_DUPLICATES: '{{ .Values.tap.misc.detectDuplicates | ternary "true" "false" }}' PCAP_DUMP_ENABLE: '{{ .Values.pcapdump.enabled }}' PCAP_TIME_INTERVAL: '{{ .Values.pcapdump.timeInterval }}'