diff --git a/charts/falco/CHANGELOG.md b/charts/falco/CHANGELOG.md index 1e87c6cf5..22d080b6a 100644 --- a/charts/falco/CHANGELOG.md +++ b/charts/falco/CHANGELOG.md @@ -3,6 +3,10 @@ This file documents all notable changes to Falco Helm Chart. The release numbering uses [semantic versioning](http://semver.org). +##v4.2.3 + +* fix(falco/helpers): adjust formatting to be compatible with older helm versions + ## v4.2.2 * fix(falco/README): dead link diff --git a/charts/falco/Chart.yaml b/charts/falco/Chart.yaml index cc96dce8a..5e81dcc31 100644 --- a/charts/falco/Chart.yaml +++ b/charts/falco/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: falco -version: 4.2.2 +version: 4.2.3 appVersion: "0.37.1" description: Falco keywords: diff --git a/charts/falco/README.md b/charts/falco/README.md index e83c3f57a..81ecd6629 100644 --- a/charts/falco/README.md +++ b/charts/falco/README.md @@ -581,7 +581,7 @@ If you use a Proxy in your cluster, the requests between `Falco` and `Falcosidek ## Configuration -The following table lists the main configurable parameters of the falco chart v4.2.2 and their default values. See [values.yaml](./values.yaml) for full list. +The following table lists the main configurable parameters of the falco chart v4.2.3 and their default values. See [values.yaml](./values.yaml) for full list. ## Values diff --git a/charts/falco/templates/_helpers.tpl b/charts/falco/templates/_helpers.tpl index b24075db5..f54d9eef0 100644 --- a/charts/falco/templates/_helpers.tpl +++ b/charts/falco/templates/_helpers.tpl @@ -403,13 +403,7 @@ Based on the user input it populates the driver configuration in the falco confi It returns "true" if the driver loader has to be enabled, otherwise false. */}} {{- define "driverLoader.enabled" -}} -{{- if or - (eq .Values.driver.kind "modern_ebpf") - (eq .Values.driver.kind "modern-bpf") - (eq .Values.driver.kind "gvisor") - (not .Values.driver.enabled) - (not .Values.driver.loader.enabled) --}} +{{- if or (eq .Values.driver.kind "modern_ebpf") (eq .Values.driver.kind "modern-bpf") (eq .Values.driver.kind "gvisor") (not .Values.driver.enabled) (not .Values.driver.loader.enabled) -}} false {{- else -}} true