From 9bdc77c754fce90094011f55888e703e4ca731d2 Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Wed, 23 Apr 2025 20:39:43 +0300 Subject: [PATCH] :hammer: Add `SCRIPTING_ACTIVATE_ON_CREATION` 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 90bedb07e..4e0f4f3ce 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -14,6 +14,7 @@ data: STOPPED: '{{ .Values.tap.stopped | ternary "true" "false" }}' SCRIPTING_SCRIPTS: '{}' SCRIPTING_ACTIVE_SCRIPTS: '{{ gt (len .Values.scripting.active) 0 | ternary (join "," .Values.scripting.active) "" }}' + SCRIPTING_ACTIVATE_ON_CREATION: '{{ .Values.scripting.activateOnCreation | ternary "true" "false" }}' INGRESS_ENABLED: '{{ .Values.tap.ingress.enabled }}' INGRESS_HOST: '{{ .Values.tap.ingress.host }}' PROXY_FRONT_PORT: '{{ .Values.tap.proxy.front.port }}'