Skip to content

Commit

Permalink
fix(authelia): oidc cors indent (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott authored Jun 8, 2022
1 parent 11f6d1e commit f701a0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.8.32
version: 0.8.33
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
4 changes: 2 additions & 2 deletions charts/authelia/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@ data:
{{- if semverCompare ">=4.35.0" (include "authelia.version" $) }}
cors:
{{- if .Values.configMap.identity_providers.oidc.cors.endpoints }}
endpoints: {{ toYaml .Values.configMap.identity_providers.oidc.cors.endpoints | nindent 8 }}
endpoints: {{ toYaml .Values.configMap.identity_providers.oidc.cors.endpoints | nindent 12 }}
{{- end }}
{{- if .Values.configMap.identity_providers.oidc.cors.allowed_origins }}
allowed_origins: {{ toYaml .Values.configMap.identity_providers.oidc.cors.allowed_origins | nindent 8 }}
allowed_origins: {{ toYaml .Values.configMap.identity_providers.oidc.cors.allowed_origins | nindent 12 }}
{{- end }}
allowed_origins_from_client_redirect_uris: {{ .Values.configMap.identity_providers.oidc.cors.allowed_origins_from_client_redirect_uris }}
{{- end }}
Expand Down

0 comments on commit f701a0f

Please sign in to comment.