Skip to content

Commit

Permalink
Fix/disable ebpf by defalt again (#1538)
Browse files Browse the repository at this point in the history
* Revert "Revert "as eBPF is a significant feature that can impact many users, this PR is meant (#1532)""

This reverts commit 7ab63ec.

* Added the missing -disable-ebpf parameters to Tracer
  • Loading branch information
alongir committed Apr 23, 2024
1 parent 0bb0c4b commit 32ffa61
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions helm-chart/templates/09-worker-daemon-set.yaml
Expand Up @@ -62,6 +62,9 @@ spec:
{{- if .Values.tap.kernelModule.enabled }}
- -kernel-module
{{- end }}
{{- if ne .Values.tap.packetCapture "ebpf" }}
- -disable-ebpf
{{- end }}
{{- if .Values.tap.debug }}
- -debug
- -dumptracer
Expand Down Expand Up @@ -151,6 +154,9 @@ spec:
- ./tracer
- -procfs
- /hostproc
{{- if ne .Values.tap.packetCapture "ebpf" }}
- -disable-ebpf
{{- end }}
{{- if .Values.tap.debug }}
- -debug
{{- end }}
Expand Down

0 comments on commit 32ffa61

Please sign in to comment.