diff --git a/charts/falco-talon/CHANGELOG.md b/charts/falco-talon/CHANGELOG.md index af64c116d..b2ba86b16 100644 --- a/charts/falco-talon/CHANGELOG.md +++ b/charts/falco-talon/CHANGELOG.md @@ -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 diff --git a/charts/falco-talon/Chart.yaml b/charts/falco-talon/Chart.yaml index 5689bd7c0..ccc8d38f1 100644 --- a/charts/falco-talon/Chart.yaml +++ b/charts/falco-talon/Chart.yaml @@ -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 diff --git a/charts/falco-talon/templates/deployment.yaml b/charts/falco-talon/templates/deployment.yaml index 862a882df..80cb5e5c4 100644 --- a/charts/falco-talon/templates/deployment.yaml +++ b/charts/falco-talon/templates/deployment.yaml @@ -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 }}