Skip to content

Commit

Permalink
chore(falcosidekick): support extraArgs in the helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
ogercyprien committed Oct 20, 2023
1 parent 16b9bb7 commit c86b4f5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/falco/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ maintainers:
email: [email protected]
dependencies:
- name: falcosidekick
version: "0.7.1"
version: "0.7.6"
condition: falcosidekick.enabled
repository: https://falcosecurity.github.io/charts
repository: https://raw.githubusercontent.com/opendatasoft/falco-charts/gh-pages/
4 changes: 4 additions & 0 deletions charts/falcosidekick/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.6

* noop change just to test the ci

## 0.7.5

* noop change just to test the ci
Expand Down
2 changes: 1 addition & 1 deletion charts/falcosidekick/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 2.28.0
description: Connect Falco to your ecosystem
icon: https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick_color.png
name: falcosidekick
version: 0.7.5
version: 0.7.6
keywords:
- monitoring
- security
Expand Down
6 changes: 5 additions & 1 deletion charts/falcosidekick/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ spec:
periodSeconds: 5
{{- if .Values.securityContext }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- end }}
{{- if .Values.config.extraArgs }}
args:
- /app/falcosidekick
{{ toYaml .Values.config.extraArgs | nindent 12 }}
{{- end }}
envFrom:
- secretRef:
Expand Down
2 changes: 2 additions & 0 deletions charts/falcosidekick/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ config:
existingSecret: ""
# -- Extra environment variables
extraEnv: []
# -- Extra command-line arguments.
extraArgs: []
# -- DEBUG environment variable
debug: false
# -- a list of escaped comma separated custom fields to add to falco events, syntax is "key:value\,key:value"
Expand Down

0 comments on commit c86b4f5

Please sign in to comment.