Compare commits

..

4 Commits

Author SHA1 Message Date
tiptophelmet
86223a4698 🔨 Add demo-enabled config 2026-03-13 14:01:38 +02:00
tiptophelmet
4f7af0e90d 🔨 Add demo-enabled front env 2026-03-13 14:01:28 +02:00
tiptophelmet
ebb4f6e3e6 🔨 Add snapshots-updating-enabled config 2026-03-12 15:26:33 +02:00
tiptophelmet
1e63b67245 🔨 Add snapshots-updating-enabled front env 2026-03-12 15:26:10 +02:00
2 changed files with 6 additions and 0 deletions

View File

@@ -92,6 +92,10 @@ spec:
value: '{{ default false .Values.betaEnabled | ternary "true" "false" }}'
- name: REACT_APP_DISSECTORS_UPDATING_ENABLED
value: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}'
- name: REACT_APP_SNAPSHOTS_UPDATING_ENABLED
value: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}'
- name: REACT_APP_DEMO_MODE_ENABLED
value: '{{ .Values.demoModeEnabled | ternary "true" "false" }}'
- name: REACT_APP_CLUSTER_WIDE_MAP_ENABLED
value: '{{ default false (((.Values).tap).dashboard).clusterWideMapEnabled }}'
- name: REACT_APP_RAW_CAPTURE_ENABLED

View File

@@ -77,6 +77,8 @@ 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" }}'
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 }}'