Returned ebpf as an explicit option and af-packet as the default option

This commit is contained in:
Alon Girmonsky 2024-05-31 12:10:23 -07:00
parent b49ca767c9
commit ef84f90cd9

View File

@ -62,6 +62,9 @@ spec:
{{- if .Values.tap.kernelModule.enabled }} {{- if .Values.tap.kernelModule.enabled }}
- -kernel-module - -kernel-module
{{- end }} {{- end }}
{{- if ne .Values.tap.packetCapture "ebpf" }}
- -disable-ebpf
{{- end }}
{{- if .Values.tap.misc.disableCgroupIdResolution }} {{- if .Values.tap.misc.disableCgroupIdResolution }}
- -disable-cgroup-id-resolution - -disable-cgroup-id-resolution
{{- end }} {{- end }}
@ -154,6 +157,9 @@ spec:
- ./tracer - ./tracer
- -procfs - -procfs
- /hostproc - /hostproc
{{- if ne .Values.tap.packetCapture "ebpf" }}
- -disable-ebpf
{{- end }}
{{- if .Values.tap.debug }} {{- if .Values.tap.debug }}
- -debug - -debug
{{- end }} {{- end }}