added option to set admin.password, tls.key and tls.cert in argocd-secret via values
This commit is contained in:
parent
882b5e384d
commit
5d8fab4032
2 changed files with 12 additions and 0 deletions
|
@ -23,5 +23,13 @@ data:
|
|||
{{- if .Values.configs.secret.bitbucketSecret }}
|
||||
bitbucket.webhook.uuid: {{ .Values.configs.secret.bitbucketSecret | b64enc }}
|
||||
{{- end }}
|
||||
{{- if and .Values.configs.secret.argocdServerTlsConfig.key (.Values.configs.secret.argocdServerTlsConfig.cert) }}
|
||||
tls.key: {{ .Values.configs.secret.argocdServerTlsConfig.key | b64enc }}
|
||||
tls.cert: {{ .Values.configs.secret.argocdServerTlsConfig.cert | b64enc }}
|
||||
{{- end }}
|
||||
|
||||
{{- if .Values.configs.secret.argocdServerAdminPassword }}
|
||||
admin.password: {{ .Values.configs.secret.argocdServerAdminPassword | b64enc }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -532,3 +532,7 @@ configs:
|
|||
githubSecret: ""
|
||||
gitlabSecret: ""
|
||||
bitbucketSecret: ""
|
||||
# argocdServerTlsConfig:
|
||||
# key:
|
||||
# cert:
|
||||
# argocdServerAdminPassword:
|
||||
|
|
Loading…
Reference in a new issue