fix(argo-cd): fixed shard value in clusterCredentials Secret (#2982)

Signed-off-by: Adrian Gaciąg <9296199+adisong@users.noreply.github.com>
pull/2983/head argo-cd-7.6.10
Adrian Gaciąg 2024-10-16 14:00:22 +02:00 committed by GitHub
parent 3c24fa1bfd
commit f0c5ccc32a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ appVersion: v2.12.4
kubeVersion: ">=1.25.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 7.6.9
version: 7.6.10
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:
@ -27,4 +27,4 @@ annotations:
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: fixed
description: added missing events create for run actions
description: fixed shard value in cluster credentials Secret to be string

View File

@ -20,7 +20,7 @@ metadata:
type: Opaque
stringData:
{{- if $cluster_value.shard }}
shard: {{ $cluster_value.shard }}
shard: {{ $cluster_value.shard | quote }}
{{- end }}
name: {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.name entry is required!" $cluster_key }}
server: {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.server entry is required!" $cluster_value.server }}