fix(argo-cd): Fix required cluster credentials name (#3136)
* fix required cluster credential name Signed-off-by: atgane <hyper201286@gmail.com> * fix Signed-off-by: atgane <hyper201286@gmail.com> * update changelog & docs Signed-off-by: atgane <hyper201286@gmail.com> * chore: Drop unnecessary docs inside README.md and README.md.gotmpl Signed-off-by: Marco Maurer <mkilchhofer@users.noreply.github.com> --------- Signed-off-by: atgane <hyper201286@gmail.com> Signed-off-by: Marco Maurer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Maurer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
d75b9d35a3
commit
2685b861d2
2 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.13.3
|
||||||
kubeVersion: ">=1.25.0-0"
|
kubeVersion: ">=1.25.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 7.7.20
|
version: 7.7.21
|
||||||
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
|
||||||
sources:
|
sources:
|
||||||
|
@ -26,5 +26,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
- kind: fixed
|
||||||
description: Bump redis-exporter to 1.67.0
|
description: remove required function in $cluster_key from clusterCredentials
|
||||||
|
|
|
@ -22,7 +22,7 @@ stringData:
|
||||||
{{- if $cluster_value.shard }}
|
{{- if $cluster_value.shard }}
|
||||||
shard: {{ $cluster_value.shard | quote }}
|
shard: {{ $cluster_value.shard | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
name: {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.name entry is required!" $cluster_key }}
|
name: {{ $cluster_key }}
|
||||||
server: {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.server entry is required!" $cluster_value.server }}
|
server: {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.server entry is required!" $cluster_value.server }}
|
||||||
{{- if $cluster_value.namespaces }}
|
{{- if $cluster_value.namespaces }}
|
||||||
namespaces: {{ $cluster_value.namespaces }}
|
namespaces: {{ $cluster_value.namespaces }}
|
||||||
|
|
Loading…
Reference in a new issue