File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: v2.11.3
33kubeVersion : " >=1.23.0-0"
44description : A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
55name : argo-cd
6- version : 7.3.0
6+ version : 7.3.1
77home : https://github.com/argoproj/argo-helm
88icon : https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99sources :
@@ -27,4 +27,4 @@ annotations:
2727 url: https://argoproj.github.io/argo-helm/pgp_keys.asc
2828 artifacthub.io/changes : |
2929 - kind: changed
30- description: make PrometheusRule deployment conditional on CRD existence
30+ description: add shard option for clusterCredentials
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ metadata:
1919 {{- end }}
2020type : Opaque
2121stringData :
22+ {{- if $cluster_value.shard }}
23+ shard : {{ $cluster_value.shard }}
24+ {{- end }}
2225 name : {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.name entry is required!" $cluster_key }}
2326 server : {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.server entry is required!" $cluster_value.server }}
2427 {{- if $cluster_value.namespaces }}
Original file line number Diff line number Diff line change @@ -461,6 +461,16 @@ configs:
461461 # tlsClientConfig:
462462 # insecure: false
463463 # caData: "<base64 encoded certificate>"
464+ # mycluster4-sharded:
465+ # shard: 1
466+ # server: https://mycluster4.example.com
467+ # labels: {}
468+ # annotations: {}
469+ # config:
470+ # bearerToken: "<authentication token>"
471+ # tlsClientConfig:
472+ # insecure: false
473+ # caData: "<base64 encoded certificate>"
464474
465475 # -- Repository credentials to be used as Templates for other repos
466476 # # Creates a secret for each key/value specified below to create repository credentials
You can’t perform that action at this time.
0 commit comments