fix(argo-workflows): sso configuration (#1492)
Signed-off-by: yu-croco <yu.croco@gmail.com>pull/1493/head argo-workflows-0.19.5
parent
ab2ab593b3
commit
99aadc56c4
|
@ -3,7 +3,7 @@ appVersion: v3.4.0
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.19.4
|
version: 0.19.5
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
@ -13,4 +13,4 @@ maintainers:
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Support Azure Blob Storage for artifact"
|
- "[Fixed]: Fixed failed sso configuration"
|
||||||
|
|
|
@ -131,9 +131,9 @@ data:
|
||||||
name: {{ .clientSecret.name }}
|
name: {{ .clientSecret.name }}
|
||||||
key: {{ .clientSecret.key }}
|
key: {{ .clientSecret.key }}
|
||||||
redirectUrl: {{ .redirectUrl }}
|
redirectUrl: {{ .redirectUrl }}
|
||||||
{{- if and (.rbac) (.rbac.enabled) }}
|
{{- with .rbac }}
|
||||||
rbac:
|
rbac:
|
||||||
enabled: {{ .rbac.enabled }}
|
enabled: {{ .enabled }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .scopes }}
|
{{- if .scopes }}
|
||||||
scopes: {{ toYaml .scopes | nindent 8 }}
|
scopes: {{ toYaml .scopes | nindent 8 }}
|
||||||
|
@ -141,9 +141,8 @@ data:
|
||||||
{{- if .issuerAlias }}
|
{{- if .issuerAlias }}
|
||||||
issuerAlias: {{ .issuerAlias }}
|
issuerAlias: {{ .issuerAlias }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if and (.sessionExpiry) (.sessionExpiry.duration) }}
|
{{- if .sessionExpiry }}
|
||||||
sessionExpiry:
|
sessionExpiry: .sessionExpiry
|
||||||
duration: {{ .sessionExpiry.duration }}
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .customGroupClaimName }}
|
{{- if .customGroupClaimName }}
|
||||||
customGroupClaimName: {{ .customGroupClaimName }}
|
customGroupClaimName: {{ .customGroupClaimName }}
|
||||||
|
|
Loading…
Reference in New Issue