46 lines
1.9 KiB
Plaintext
46 lines
1.9 KiB
Plaintext
{{- if eq .Values.controller.kind "daemonset" }}
|
|
Falco agents are spinning up on each node in your cluster. After a few
|
|
seconds, they are going to start monitoring your containers looking for
|
|
security issues.
|
|
{{printf "\n" }}
|
|
{{- end}}
|
|
{{- if .Values.integrations }}
|
|
WARNING: The following integrations have been deprecated and removed
|
|
- gcscc
|
|
- natsOutput
|
|
- snsOutput
|
|
- pubsubOutput
|
|
Consider to use falcosidekick (https://github.com/falcosecurity/falcosidekick) as replacement.
|
|
{{- else }}
|
|
No further action should be required.
|
|
{{- end }}
|
|
{{printf "\n" }}
|
|
|
|
{{- if not .Values.falcosidekick.enabled }}
|
|
Tip:
|
|
You can easily forward Falco events to Slack, Kafka, AWS Lambda and more with falcosidekick.
|
|
Full list of outputs: https://github.com/falcosecurity/charts/tree/master/charts/falcosidekick.
|
|
You can enable its deployment with `--set falcosidekick.enabled=true` or in your values.yaml.
|
|
See: https://github.com/falcosecurity/charts/blob/master/charts/falcosidekick/values.yaml for configuration values.
|
|
|
|
{{- end}}
|
|
|
|
|
|
{{- if (has .Values.driver.kind (list "module" "modern-bpf")) -}}
|
|
{{- println }}
|
|
WARNING(drivers):
|
|
{{- printf "\nThe driver kind: \"%s\" is an alias and might be removed in the future.\n" .Values.driver.kind -}}
|
|
{{- $driver := "" -}}
|
|
{{- if eq .Values.driver.kind "module" -}}
|
|
{{- $driver = "kmod" -}}
|
|
{{- else if eq .Values.driver.kind "modern-bpf" -}}
|
|
{{- $driver = "modern_ebpf" -}}
|
|
{{- end -}}
|
|
{{- printf "Please use \"%s\" instead." $driver}}
|
|
{{- end -}}
|
|
|
|
{{- if and (not (empty .Values.falco.load_plugins)) (or .Values.falcoctl.artifact.follow.enabled .Values.falcoctl.artifact.install.enabled) }}
|
|
|
|
WARNING:
|
|
{{ printf "It seems you are loading the following plugins %v, please make sure to install them by adding the correct reference to falcoctl.config.artifact.install.refs: %v" .Values.falco.load_plugins .Values.falcoctl.config.artifact.install.refs -}}
|
|
{{- end }} |