Skip to content

Commit 4f6e431

Browse files
Issifddrp
authored andcommitted
bump up talon version to 0.3.0 + fix missing usage of imagePullSecrets
Co-authored-by: ddrp <[email protected]> Signed-off-by: Thomas Labarussias <[email protected]>
1 parent 96209d4 commit 4f6e431

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

charts/falco-talon/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
This file documents all notable changes to Falco Talon Helm Chart. The release
44
numbering uses [semantic versioning](http://semver.org).
55

6+
## 0.3.0 - 2024-02-07
7+
8+
- bump up version to `v0.3.0`
9+
- fix missing usage of the `imagePullSecrets`
10+
611
## 0.2.3 - 2024-12-18
712

813
- add a Grafana dashboard for the Prometheus metrics

charts/falco-talon/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: 0.2.1
2+
appVersion: 0.3.0
33
description: React to the events from Falco
44
name: falco-talon
5-
version: 0.2.2
5+
version: 0.3.0
66
keywords:
77
- falco
88
- monitoring

charts/falco-talon/templates/deployment.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ spec:
2424
secret-checksum: {{ (lookup "v1" "Secret" .Release.Namespace (include "falco-talon.name" . | cat "-config")).data | toJson | sha256sum }}
2525
spec:
2626
serviceAccountName: {{ include "falco-talon.name" . }}
27+
{{- if .Values.imagePullSecrets }}
28+
imagePullSecrets:
29+
{{- range .Values.imagePullSecrets }}
30+
- name: {{ . }}
31+
{{- end }}
32+
{{- end }}
2733
{{- if .Values.priorityClassName }}
2834
priorityClassName: "{{ .Values.priorityClassName }}"
2935
{{- end }}

0 commit comments

Comments
 (0)