Skip to content

Instantly share code, notes, and snippets.

@Issif
Last active March 31, 2024 20:44
Show Gist options
  • Save Issif/89c84103331777c076a430becf4a7d09 to your computer and use it in GitHub Desktop.
Save Issif/89c84103331777c076a430becf4a7d09 to your computer and use it in GitHub Desktop.

Cluster A - Falco + Falcosidekick

helm install falco falcosecurity/falco -n falco \
--set falcosidekick.enabled=true \
--set falcosidekick.customfields="cluster.name:A" \
--set falcosidekick.config.webhook.address="http://<falcosidekick.cluster-c>" \
--create-namespace

Cluster B - Falco + Falcosidekick

helm install falco falcosecurity/falco -n falco \
--set falcosidekick.enabled=true \
--set falcosidekick.customfields="cluster.name:B" \
--set falcosidekick.config.webhook.address="http://<falcosidekick.cluster-c>" \
--create-namespace

Cluster C - Falcosidekick + Falcosidekick-UI

helm install falco falcosecurity/falcosidekick -n falco \
--set ingress.enabled=true \
--set ingress.hosts[0].host=<falcosidekick.cluster-c> \
--set webui.enabled=true" \
--set webui.ingress.enabled=true \
--set webui.ingress.hosts[0].host=<falcosidekick-ui.cluster-c> \
--create-namespace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment