From 58824a3c5c4c1f99a85715fddc0cf77c43eddd0a Mon Sep 17 00:00:00 2001 From: Raphael Campos Date: Wed, 17 Apr 2024 16:22:31 -0300 Subject: [PATCH 1/2] fix: option webhook value on helm If uses helm chart to install Tracee, the '--output' key need to be separeted from value 'webhook' in order to work as excepted. --- deploy/helm/tracee/templates/daemonset.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/helm/tracee/templates/daemonset.yaml b/deploy/helm/tracee/templates/daemonset.yaml index 7a5456bc7497..fb6040ef80c6 100644 --- a/deploy/helm/tracee/templates/daemonset.yaml +++ b/deploy/helm/tracee/templates/daemonset.yaml @@ -36,7 +36,8 @@ spec: - --config - /tracee/config.yaml {{- if .Values.webhook }} - - --output webhook:{{ .Values.webhook }} + - --output + - webhook:{{ .Values.webhook }} {{- end }} env: - name: LIBBPFGO_OSRELEASE_FILE From 37fd4803745b599c7b3af9c36bbff0103d70fbd7 Mon Sep 17 00:00:00 2001 From: Raphael Campos Date: Wed, 17 Apr 2024 16:36:11 -0300 Subject: [PATCH 2/2] docs: helm add repo is not necessary from local installation --- docs/contributing/setup-development-machine-with-vagrant.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/contributing/setup-development-machine-with-vagrant.md b/docs/contributing/setup-development-machine-with-vagrant.md index 8a9ed4f65a2d..1e1df0f95117 100644 --- a/docs/contributing/setup-development-machine-with-vagrant.md +++ b/docs/contributing/setup-development-machine-with-vagrant.md @@ -226,7 +226,6 @@ detections to the standard output and send them over to Postee webhook on http://postee-svc:8082: ```console -helm repo add aqua https://aquasecurity.github.io/helm-charts helm install tracee ./deploy/helm/tracee \ --namespace tracee-system \ --set hostPID=true \