Skip to content

Commit

Permalink
bump up talon version to 0.3.0 + fix missing usage of imagePullSecrets
Browse files Browse the repository at this point in the history
Co-authored-by: ddrp <[email protected]>
Signed-off-by: Thomas Labarussias <[email protected]>
  • Loading branch information
2 people authored and poiana committed Feb 10, 2025
1 parent 96209d4 commit 4f6e431
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions charts/falco-talon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
This file documents all notable changes to Falco Talon Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## 0.3.0 - 2024-02-07

- bump up version to `v0.3.0`
- fix missing usage of the `imagePullSecrets`

## 0.2.3 - 2024-12-18

- add a Grafana dashboard for the Prometheus metrics
Expand Down
4 changes: 2 additions & 2 deletions charts/falco-talon/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: 0.2.1
appVersion: 0.3.0
description: React to the events from Falco
name: falco-talon
version: 0.2.2
version: 0.3.0
keywords:
- falco
- monitoring
Expand Down
6 changes: 6 additions & 0 deletions charts/falco-talon/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ spec:
secret-checksum: {{ (lookup "v1" "Secret" .Release.Namespace (include "falco-talon.name" . | cat "-config")).data | toJson | sha256sum }}
spec:
serviceAccountName: {{ include "falco-talon.name" . }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.imagePullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
{{- end }}
Expand Down

0 comments on commit 4f6e431

Please sign in to comment.