fix(argo-cd): Quote clusterResources value to avoid invalid Secret manifest (#1160)
Signed-off-by: Matthias Lisin <ml@visu.li>
This commit is contained in:
parent
f985751bb2
commit
0a5422f20a
2 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.2.5
|
appVersion: v2.2.5
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 3.35.1
|
version: 3.35.2
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -21,4 +21,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Use upstream entrypoint.sh for argocd-repo-server"
|
- "[Fixed]: Quote clusterResources value to avoid invalid Secret manifest"
|
||||||
|
|
|
@ -23,7 +23,7 @@ stringData:
|
||||||
{{- if .namespaces }}
|
{{- if .namespaces }}
|
||||||
namespaces: {{ .namespaces }}
|
namespaces: {{ .namespaces }}
|
||||||
{{- if .clusterResources }}
|
{{- if .clusterResources }}
|
||||||
clusterResources: {{ .clusterResources }}
|
clusterResources: {{ .clusterResources | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
config: |
|
config: |
|
||||||
|
|
Loading…
Reference in a new issue