Adding oidcConfig option to argo-cd helm chart (#49)
parent
37014cbcc9
commit
f607f4fc80
|
@ -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 }}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue