diff --git a/charts/falcosidekick/CHANGELOG.md b/charts/falcosidekick/CHANGELOG.md index 5e5baea7f..9bbbffd8a 100644 --- a/charts/falcosidekick/CHANGELOG.md +++ b/charts/falcosidekick/CHANGELOG.md @@ -5,6 +5,10 @@ numbering uses [semantic versioning](http://semver.org). Before release 0.1.20, the helm chart can be found in `falcosidekick` [repository](https://github.com/falcosecurity/falcosidekick/tree/master/deploy/helm/falcosidekick). +## 0.9.11 + +- Add `customtags` setting + ## 0.9.10 - Fix missing values in the README diff --git a/charts/falcosidekick/Chart.yaml b/charts/falcosidekick/Chart.yaml index 77ca78953..a33c91cba 100644 --- a/charts/falcosidekick/Chart.yaml +++ b/charts/falcosidekick/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 2.31.1 description: Connect Falco to your ecosystem icon: https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick_color.png name: falcosidekick -version: 0.9.10 +version: 0.9.11 keywords: - monitoring - security diff --git a/charts/falcosidekick/README.md b/charts/falcosidekick/README.md index e10882224..86cf396bd 100644 --- a/charts/falcosidekick/README.md +++ b/charts/falcosidekick/README.md @@ -234,6 +234,7 @@ The following table lists the main configurable parameters of the Falcosidekick | config.cloudevents.extension | string | `""` | Extensions to add in the outbound Event, useful for routing | | config.cloudevents.minimumpriority | string | `""` | minimum priority of event to use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` | | config.customfields | string | `""` | a list of escaped comma separated custom fields to add to falco events, syntax is "key:value\,key:value" | +| config.customtags | string | `""` | a list of escaped comma separated custom tags to add to falco events, syntax is "tag\,tag" | | config.datadog.apikey | string | `""` | Datadog API Key, if not `empty`, Datadog output is *enabled* | | config.datadog.host | string | `""` | Datadog host. Override if you are on the Datadog EU site. Defaults to american site with "" | | config.datadog.minimumpriority | string | `""` | minimum priority of event to use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` | diff --git a/charts/falcosidekick/templates/deployment.yaml b/charts/falcosidekick/templates/deployment.yaml index dd848fef6..aff3700fe 100644 --- a/charts/falcosidekick/templates/deployment.yaml +++ b/charts/falcosidekick/templates/deployment.yaml @@ -112,6 +112,8 @@ spec: value: {{ .Values.config.customfields | quote }} - name: TEMPLATEDFIELDS value: {{ .Values.config.templatedfields | quote }} + - name: CUSTOMTAGS + value: {{ .Values.config.customtags | quote }} - name: OUTPUTFIELDFORMAT value: {{ .Values.config.outputFieldFormat | quote }} - name: BRACKETREPLACER diff --git a/charts/falcosidekick/values.yaml b/charts/falcosidekick/values.yaml index 83afe879e..5a5bcaf73 100644 --- a/charts/falcosidekick/values.yaml +++ b/charts/falcosidekick/values.yaml @@ -145,6 +145,8 @@ config: customfields: "" # -- a list of escaped comma separated Go templated fields to add to falco events, syntax is "key:template\,key:template" templatedfields: "" + # -- a list of escaped comma separated custom tags to add to falco events, syntax is "tag\,tag" + customtags: "" # -- if not empty, the brackets in keys of Output Fields are replaced bracketreplacer: "" # if not empty, allow to change the format of the output field. (example: ": ") (default: ": ")