fix: argocd-secret reference in values.yaml (#182)
* Fix reference to argo-cd server TLS data * Bump chart version
This commit is contained in:
parent
78fd7e0bfb
commit
6faf1e77c8
2 changed files with 15 additions and 14 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "1.3.4"
|
appVersion: "1.3.4"
|
||||||
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: 1.4.4
|
version: 1.4.5
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -687,16 +687,17 @@ configs:
|
||||||
gogsSecret: ""
|
gogsSecret: ""
|
||||||
|
|
||||||
# Argo TLS Data.
|
# Argo TLS Data.
|
||||||
argocdServerTlsConfig:
|
argocdServerTlsConfig:
|
||||||
{}
|
{}
|
||||||
# key:
|
# key:
|
||||||
# crt: |
|
# crt: |
|
||||||
# -----BEGIN CERTIFICATE-----
|
# -----BEGIN CERTIFICATE-----
|
||||||
# <cert data>
|
# <cert data>
|
||||||
# -----END CERTIFICATE-----
|
# -----END CERTIFICATE-----
|
||||||
# -----BEGIN CERTIFICATE-----
|
# -----BEGIN CERTIFICATE-----
|
||||||
# <ca cert data>
|
# <ca cert data>
|
||||||
# -----END CERTIFICATE-----
|
# -----END CERTIFICATE-----
|
||||||
# Argo expects the password in the secret to be bcrypt hashed. You can create this hash with
|
|
||||||
# `htpasswd -nbBC 10 "" $ARGO_PWD | tr -d ':\n' | sed 's/$2y/$2a/'`
|
# Argo expects the password in the secret to be bcrypt hashed. You can create this hash with
|
||||||
# argocdServerAdminPassword:
|
# `htpasswd -nbBC 10 "" $ARGO_PWD | tr -d ':\n' | sed 's/$2y/$2a/'`
|
||||||
|
# argocdServerAdminPassword:
|
||||||
|
|
Loading…
Reference in a new issue