fix: set extraArgs default to be a sequence (#282)
* fix: set extraArgs default to be a sequence Addresses issue #281 Inconsistency introduced in #265 * [charts/argo-cd] Bump version to 2.0.1 (#282) Co-authored-by: Spencer Gilbert <Spencer.Gilbert@gmail.com>pull/283/head
parent
4f4c3af0c2
commit
15f8a37360
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "1.4.2"
|
appVersion: "1.4.2"
|
||||||
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: 2.0.0
|
version: 2.0.1
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -36,8 +36,8 @@ controller:
|
||||||
logLevel: info
|
logLevel: info
|
||||||
|
|
||||||
## Additional command line arguments to pass to argocd-controller
|
## Additional command line arguments to pass to argocd-controller
|
||||||
## key: value
|
##
|
||||||
extraArgs: {}
|
extraArgs: []
|
||||||
|
|
||||||
## Environment variables to pass to argocd-controller
|
## Environment variables to pass to argocd-controller
|
||||||
##
|
##
|
||||||
|
@ -301,9 +301,9 @@ server:
|
||||||
imagePullPolicy: # IfNotPresent
|
imagePullPolicy: # IfNotPresent
|
||||||
|
|
||||||
## Additional command line arguments to pass to argocd-server
|
## Additional command line arguments to pass to argocd-server
|
||||||
## key: value
|
##
|
||||||
extraArgs: {}
|
extraArgs: []
|
||||||
# insecure: true
|
# - --insecure
|
||||||
|
|
||||||
## Environment variables to pass to argocd-server
|
## Environment variables to pass to argocd-server
|
||||||
##
|
##
|
||||||
|
@ -556,8 +556,8 @@ repoServer:
|
||||||
imagePullPolicy: # IfNotPresent
|
imagePullPolicy: # IfNotPresent
|
||||||
|
|
||||||
## Additional command line arguments to pass to argocd-repo-server
|
## Additional command line arguments to pass to argocd-repo-server
|
||||||
## key: value
|
##
|
||||||
extraArgs: {}
|
extraArgs: []
|
||||||
|
|
||||||
## Environment variables to pass to argocd-repo-server
|
## Environment variables to pass to argocd-repo-server
|
||||||
##
|
##
|
||||||
|
|
Loading…
Reference in New Issue