From ef84f90cd9c3af2971098d189de7ed7a3bce3ca1 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Fri, 31 May 2024 12:10:23 -0700 Subject: [PATCH] Returned ebpf as an explicit option and af-packet as the default option --- helm-chart/templates/09-worker-daemon-set.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/helm-chart/templates/09-worker-daemon-set.yaml b/helm-chart/templates/09-worker-daemon-set.yaml index 5dcb87525..716bff64a 100644 --- a/helm-chart/templates/09-worker-daemon-set.yaml +++ b/helm-chart/templates/09-worker-daemon-set.yaml @@ -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.misc.disableCgroupIdResolution }} - -disable-cgroup-id-resolution {{- end }} @@ -154,6 +157,9 @@ spec: - ./tracer - -procfs - /hostproc + {{- if ne .Values.tap.packetCapture "ebpf" }} + - -disable-ebpf + {{- end }} {{- if .Values.tap.debug }} - -debug {{- end }}