Skip to content

Commit 8f45a9b

Browse files
Issifpoiana
authored andcommitted
add customtags
Signed-off-by: Thomas Labarussias <[email protected]>
1 parent 95b273b commit 8f45a9b

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

charts/falcosidekick/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ numbering uses [semantic versioning](http://semver.org).
55

66
Before release 0.1.20, the helm chart can be found in `falcosidekick` [repository](https://github.com/falcosecurity/falcosidekick/tree/master/deploy/helm/falcosidekick).
77

8+
## 0.9.11
9+
10+
- Add `customtags` setting
11+
812
## 0.9.10
913

1014
- Fix missing values in the README

charts/falcosidekick/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: 2.31.1
33
description: Connect Falco to your ecosystem
44
icon: https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick_color.png
55
name: falcosidekick
6-
version: 0.9.10
6+
version: 0.9.11
77
keywords:
88
- monitoring
99
- security

charts/falcosidekick/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ The following table lists the main configurable parameters of the Falcosidekick
234234
| config.cloudevents.extension | string | `""` | Extensions to add in the outbound Event, useful for routing |
235235
| config.cloudevents.minimumpriority | string | `""` | minimum priority of event to use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` |
236236
| config.customfields | string | `""` | a list of escaped comma separated custom fields to add to falco events, syntax is "key:value\,key:value" |
237+
| config.customtags | string | `""` | a list of escaped comma separated custom tags to add to falco events, syntax is "tag\,tag" |
237238
| config.datadog.apikey | string | `""` | Datadog API Key, if not `empty`, Datadog output is *enabled* |
238239
| config.datadog.host | string | `""` | Datadog host. Override if you are on the Datadog EU site. Defaults to american site with "<https://api.datadoghq.com>" |
239240
| config.datadog.minimumpriority | string | `""` | minimum priority of event to use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` |

charts/falcosidekick/templates/deployment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ spec:
112112
value: {{ .Values.config.customfields | quote }}
113113
- name: TEMPLATEDFIELDS
114114
value: {{ .Values.config.templatedfields | quote }}
115+
- name: CUSTOMTAGS
116+
value: {{ .Values.config.customtags | quote }}
115117
- name: OUTPUTFIELDFORMAT
116118
value: {{ .Values.config.outputFieldFormat | quote }}
117119
- name: BRACKETREPLACER

charts/falcosidekick/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ config:
145145
customfields: ""
146146
# -- a list of escaped comma separated Go templated fields to add to falco events, syntax is "key:template\,key:template"
147147
templatedfields: ""
148+
# -- a list of escaped comma separated custom tags to add to falco events, syntax is "tag\,tag"
149+
customtags: ""
148150
# -- if not empty, the brackets in keys of Output Fields are replaced
149151
bracketreplacer: ""
150152
# if not empty, allow to change the format of the output field. (example: "<timestamp>: <priority> <output> <custom_fields> <templated_fields>") (default: "<timestamp>: <priority> <output>")

0 commit comments

Comments
 (0)