updated example in values.yaml

This commit is contained in:
konstantin.kiess 2019-12-04 12:36:30 +01:00
parent 6c97810e41
commit 852b030b19

View file

@ -608,16 +608,17 @@ configs:
githubSecret: ""
gitlabSecret: ""
bitbucketSecret: ""
# Argo TLS Data.
# argocdServerTlsConfig:
# key:
# crt: |
# -----BEGIN CERTIFICATE-----
# <cert data>
# -----END CERTIFICATE-----
# -----BEGIN CERTIFICATE-----
# <ca cert data>
# -----END CERTIFICATE-----
# Argo TLS Data.
argocdServerTlsConfig: {}
# key:
# crt: |
# -----BEGIN CERTIFICATE-----
# <cert data>
# -----END CERTIFICATE-----
# -----BEGIN CERTIFICATE-----
# <ca cert data>
# -----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/'`