From 86223a46980b1d9e76b10992ed12e423422e4e5b Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Fri, 13 Mar 2026 14:01:38 +0200 Subject: [PATCH] :hammer: Add demo-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 3b495ef2b..975183921 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -78,6 +78,7 @@ data: CUSTOM_MACROS: '{{ toJson .Values.tap.customMacros }}' DISSECTORS_UPDATING_ENABLED: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}' SNAPSHOTS_UPDATING_ENABLED: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}' + DEMO_MODE_ENABLED: '{{ .Values.demoModeEnabled | ternary "true" "false" }}' DETECT_DUPLICATES: '{{ .Values.tap.misc.detectDuplicates | ternary "true" "false" }}' PCAP_DUMP_ENABLE: '{{ .Values.pcapdump.enabled }}' PCAP_TIME_INTERVAL: '{{ .Values.pcapdump.timeInterval }}'