From 2224d0e9f4945b4c7544c91197745e4b85690f7e Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Mon, 10 Jul 2023 20:43:07 +0300 Subject: [PATCH] :bug: Fix the `-debug` flag of the worker in the Helm template --- helm-chart/templates/09-worker-daemon-set.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-chart/templates/09-worker-daemon-set.yaml b/helm-chart/templates/09-worker-daemon-set.yaml index 962907f78..8b7915c6e 100644 --- a/helm-chart/templates/09-worker-daemon-set.yaml +++ b/helm-chart/templates/09-worker-daemon-set.yaml @@ -35,7 +35,6 @@ spec: containers: - command: - ./worker - {{ .Values.tap.debug | ternary "- -debug" "" }} - -i - any - -port @@ -46,6 +45,7 @@ spec: - -tls - -procfs - /hostproc + {{ .Values.tap.debug | ternary "- -debug" "" }} image: '{{ .Values.tap.docker.registry }}/worker:{{ .Values.tap.docker.tag }}' imagePullPolicy: {{ .Values.tap.docker.imagepullpolicy }} name: kubeshark-worker-daemon-set