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

pull/50/head
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 }}

View File

@ -100,6 +100,12 @@ config:
# orgs:
# - name: your-github-org
# teams:
url: # https://argocd.example.com/
oidcConfig:
# name: Okta
# issuer: https://dev-123456.oktapreview.com
# clientID: aaaabbbbccccddddeee
# clientSecret: $oidc.okta.clientSecret
# The following keys hold the shared secret for authenticating GitHub/GitLab/BitBucket webhook
# events. To enable webhooks, configure one or more of the following keys with the shared git
# provider webhook secret. The payload URL configured in the git provider should use the
@ -133,4 +139,4 @@ redis:
tag: 5.0.3
pullPolicy: Always
containerPort: 6379
servicePort: 6379
servicePort: 6379