Adding oidcConfig option to argo-cd helm chart (#49)

This commit is contained in:
Arnar 2019-04-09 18:01:45 +00:00 committed by Alexander Matyushentsev
parent 37014cbcc9
commit f607f4fc80
2 changed files with 15 additions and 2 deletions

View file

@ -20,4 +20,11 @@ data:
{{- if .Values.config.dexConfig }}
dex.config: |
{{ toYaml .Values.config.dexConfig | indent 4 }}
{{- end }}
{{- end }}
{{- if .Values.config.url }}
url: {{ .Values.config.url }}
{{- end }}
{{- if .Values.config.oidcConfig }}
oidc.config: |
{{ toYaml .Values.config.oidcConfig | indent 4 }}
{{- end }}