From b49ca767c933fce4b431cb0a6cc913d28e715db2 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Fri, 31 May 2024 12:15:07 -0700 Subject: [PATCH] change kernelModule.enabled to false Promote AF_PACKET as the default option and make kernelModule as an explicit option. This is a temporary change, until we bring back ebpf as the default option. --- config/configStructs/tapConfig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/configStructs/tapConfig.go b/config/configStructs/tapConfig.go index 804fc0d0c..2f38ae63d 100644 --- a/config/configStructs/tapConfig.go +++ b/config/configStructs/tapConfig.go @@ -138,7 +138,7 @@ type CapabilitiesConfig struct { } type KernelModuleConfig struct { - Enabled bool `yaml:"enabled" json:"enabled" default:"true"` + Enabled bool `yaml:"enabled" json:"enabled" default:"false"` Image string `yaml:"image" json:"image" default:"kubeshark/pf-ring-module:all"` UnloadOnDestroy bool `yaml:"unloadOnDestroy" json:"unloadOnDestroy" default:"false"` }