diff --git a/deploy/helm/tracee/templates/daemonset.yaml b/deploy/helm/tracee/templates/daemonset.yaml index 7a5456bc7497..65412010f78b 100644 --- a/deploy/helm/tracee/templates/daemonset.yaml +++ b/deploy/helm/tracee/templates/daemonset.yaml @@ -35,9 +35,6 @@ spec: args: - --config - /tracee/config.yaml - {{- if .Values.webhook }} - - --output webhook:{{ .Values.webhook }} - {{- end }} env: - name: LIBBPFGO_OSRELEASE_FILE value: /etc/os-release-host @@ -110,4 +107,4 @@ spec: path: /var/run/docker.sock - name: tracee-config configMap: - name: tracee-config \ No newline at end of file + name: tracee-config diff --git a/deploy/helm/tracee/values.yaml b/deploy/helm/tracee/values.yaml index a6b4049b1580..977b786c8f9a 100644 --- a/deploy/helm/tracee/values.yaml +++ b/deploy/helm/tracee/values.yaml @@ -54,8 +54,6 @@ tolerations: affinity: {} -webhook: "" - traceeConfig: {} config: diff --git a/docs/contributing/setup-development-machine-with-vagrant.md b/docs/contributing/setup-development-machine-with-vagrant.md index 8a9ed4f65a2d..dffcd57ac18c 100644 --- a/docs/contributing/setup-development-machine-with-vagrant.md +++ b/docs/contributing/setup-development-machine-with-vagrant.md @@ -230,7 +230,7 @@ helm repo add aqua https://aquasecurity.github.io/helm-charts helm install tracee ./deploy/helm/tracee \ --namespace tracee-system \ --set hostPID=true \ - --set webhook=http://postee-svc:8082 + --set config.output.webhook.host=postee-svc --set config.output.webhook.port=8082 ``` !!! tip