Skip to content

Commit

Permalink
Remove quotes around prefix values for OIDC (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvolkmann authored Mar 4, 2024
1 parent 6e26568 commit 70f9a5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ spec:
- --oidc-username-claim={{ .Values.oidc.usernameClaim }}
{{- end }}
{{- if .Values.oidc.usernamePrefix }}
- --oidc-username-prefix={{ .Values.oidc.usernamePrefix | quote }}
- --oidc-username-prefix={{ .Values.oidc.usernamePrefix }}
{{- end}}
{{- if .Values.oidc.groupsClaim }}
- --oidc-groups-claim={{ .Values.oidc.groupsClaim }}
{{- end }}
{{- if .Values.oidc.groupsPrefix }}
- --oidc-groups-prefix={{ .Values.oidc.groupsPrefix | quote }}
- --oidc-groups-prefix={{ .Values.oidc.groupsPrefix }}
{{- end }}
{{- if .Values.tls.oidc.ca }}
- --oidc-ca-file=/srv/kubernetes/oidc-ca/ca.crt
Expand Down

0 comments on commit 70f9a5e

Please sign in to comment.