fix(argo-cd): use global imagePullSecret value for notifications deployment (#1253)
* fix(argo-cd): use global imagePullSecret value for notifications deployment Signed-off-by: Höhl, Lukas <lukas.hoehl@accso.de> * chore(argo-cd): rerun helm docs Signed-off-by: Höhl, Lukas <lukas.hoehl@accso.de> * chore(argo-cd): bump version Signed-off-by: Höhl, Lukas <lukas.hoehl@accso.de> * Drop unnecessary newline Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
4a55fbef29
commit
021a5a0c1f
2 changed files with 3 additions and 5 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
appVersion: v2.3.3
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 4.5.10
|
||||
version: 4.5.11
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
keywords:
|
||||
|
@ -21,6 +21,4 @@ dependencies:
|
|||
condition: redis-ha.enabled
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- "[Fixed]: Use global imagePullPolicy for Dex by default"
|
||||
- "[Fixed]: ApplicationSet imagePullPolicy variable in values.yaml"
|
||||
- "[Fixed]: Use global imagePullPolicy for ApplicationSet by default"
|
||||
- "[Fixed]: Use global imagePullSecret value for notfications deployment"
|
||||
|
|
|
@ -27,7 +27,7 @@ spec:
|
|||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.notifications.imagePullSecrets }}
|
||||
{{- with .Values.notifications.imagePullSecrets | default .Values.global.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue