From 26e23dc94f736b093d350db1bfc9a0731b23bed6 Mon Sep 17 00:00:00 2001 From: iluxa Date: Tue, 6 Feb 2024 22:38:21 +0100 Subject: [PATCH] add capability for tracer (#1496) Co-authored-by: Alon Girmonsky <1990761+alongir@users.noreply.github.com> --- config/configStruct.go | 2 ++ helm-chart/values.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/config/configStruct.go b/config/configStruct.go index 73eceed32..2536602f1 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -57,6 +57,8 @@ func CreateDefaultConfig() ConfigStruct { "SYS_RESOURCE", // CHECKPOINT_RESTORE is required to readlink /proc/PID/exe (kernel > 5.9) "CHECKPOINT_RESTORE", + // IPC_LOCK is required for ebpf perf rings (kernel > ) + "IPC_LOCK", }, }, Auth: configStructs.AuthConfig{ diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index c62d0cdfc..c5d83e4c4 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -105,6 +105,7 @@ tap: - SYS_PTRACE - SYS_RESOURCE - CHECKPOINT_RESTORE + - IPC_LOCK globalFilter: "" metrics: port: 49100