Skip to content

Commit

Permalink
fix-falcon-talon-chart-pull-secret
Browse files Browse the repository at this point in the history
Signed-off-by: ddrp <[email protected]>
  • Loading branch information
ddrp committed Jan 24, 2025
1 parent 16e8828 commit 4f2bbda
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion charts/falco-talon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
This file documents all notable changes to Falco Talon Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## 0.2.3 - 2024-12-18
## 0.2.3 - 2025-01-24

- add a Grafana dashboard for the Prometheus metrics
- imagePullSecrets included in the falco deployment

## 0.2.1 - 2024-12-09

Expand Down
2 changes: 1 addition & 1 deletion charts/falco-talon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 0.2.1
description: React to the events from Falco
name: falco-talon
version: 0.2.2
version: 0.2.3
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 @@ -23,6 +23,12 @@ spec:
annotations:
secret-checksum: {{ (lookup "v1" "Secret" .Release.Namespace (include "falco-talon.name" . | cat "-config")).data | toJson | sha256sum }}
spec:
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.imagePullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
serviceAccountName: {{ include "falco-talon.name" . }}
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
Expand Down

0 comments on commit 4f2bbda

Please sign in to comment.