Skip to content

Commit a9ef615

Browse files
authored
fix(argo-cd): Update notification deployment to include checksum (#3549)
* fix(argo-cd): Update notification deployment to include checksum Signed-off-by: John Win <[email protected]> * Bump chart version Signed-off-by: John Win <[email protected]> --------- Signed-off-by: John Win <[email protected]>
1 parent 485f86f commit a9ef615

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

charts/argo-cd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v3.1.9
33
kubeVersion: ">=1.25.0-0"
44
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
55
name: argo-cd
6-
version: 9.0.3
6+
version: 9.0.4
77
home: https://github.com/argoproj/argo-helm
88
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99
sources:
@@ -27,4 +27,4 @@ annotations:
2727
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
2828
artifacthub.io/changes: |
2929
- kind: fixed
30-
description: Add context to Changelog in README for v9.0.0
30+
description: Add checksum to ArgoCD notifications

charts/argo-cd/templates/argocd-notifications/deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ spec:
2727
{{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.notifications.name) | nindent 6 }}
2828
template:
2929
metadata:
30-
{{- with (mergeOverwrite (deepCopy .Values.global.podAnnotations) .Values.notifications.podAnnotations) }}
3130
annotations:
31+
checksum/cmd-params: {{ include (print $.Template.BasePath "/argocd-configs/argocd-cmd-params-cm.yaml") . | sha256sum }}
32+
{{- with (mergeOverwrite (deepCopy .Values.global.podAnnotations) .Values.notifications.podAnnotations) }}
3233
{{- range $key, $value := . }}
3334
{{ $key }}: {{ $value | quote }}
3435
{{- end }}

0 commit comments

Comments
 (0)