added option to set admin.password, tls.key and tls.cert in argocd-secret via values (#158)
- Added option to set admin.password, tls.key and tls.cert in argocd-secret via values - Bumped chart version
This commit is contained in:
parent
5330efa6d8
commit
7503f29192
3 changed files with 27 additions and 3 deletions
|
|
@ -608,3 +608,18 @@ configs:
|
|||
githubSecret: ""
|
||||
gitlabSecret: ""
|
||||
bitbucketSecret: ""
|
||||
|
||||
# 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/'`
|
||||
# argocdServerAdminPassword:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue