Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(authelia): authelia configuration.yaml configmap for public client secret should be empty string #29496

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion charts/premium/authelia/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ sources:
- https://github.com/authelia/chartrepo
- https://github.com/truecharts/charts/tree/master/charts/premium/authelia
type: application
version: 25.5.4
version: 25.5.5
4 changes: 3 additions & 1 deletion charts/premium/authelia/templates/_configmap.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,11 @@ data:
{{- range $client := .Values.identity_providers.oidc.clients }}
- id: {{ $client.id }}
description: {{ $client.description | default $client.id }}
secret: {{ $client.secret | default (randAlphaNum 128) }}
{{- if $client.public }}
public: {{ $client.public }}
secret: ""
{{- else }}
secret: {{ $client.secret }}
malarinv marked this conversation as resolved.
Show resolved Hide resolved
PrivatePuffin marked this conversation as resolved.
Show resolved Hide resolved
{{- end }}
authorization_policy: {{ $client.authorization_policy | default "two_factor" }}
consent_mode: {{ $client.consent_mode | default "auto" }}
Expand Down
Loading