Installation in k8s with Helm
How to install Falco Talon in Kubernetes with Helm
Helm
The helm chart is available on the official falcosecurity/charts repository
.
Two main config files are provided:
values.yaml
allows you to configure the static settings ofFalcon Talon
and its deploymentrules.yaml
contains the rules to set
Info
If yourvalues.yaml
contains watchRules: true
, the changes in the rules are detected and the Falco Talon
pods will automatically reload their configuration.Install
To install Falco Talon, first add the chart repository:
helm repo add falcosecurity https://falcosecurity.github.io/charts
In case you already have the remote repository configured, updated it:
helm repo update falcosecurity
Now, just deploy falcosecurity/falco-talon chart:
helm upgrade --install falco-talon falcosecurity/falco-talon
After deploying, you can check if pods are running properly:
kubectl get pods -n <namespace> | grep falco-talon
Last modified November 27, 2024: docs for v0.2.0 (#15) (9b5ae74)