🐛 Fix the -debug flag of the worker in the Helm template

This commit is contained in:
M. Mert Yildiran 2023-07-10 20:43:07 +03:00
parent db01c4e9e3
commit 2224d0e9f4
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461

View File

@ -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