Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-09-14 18:19:36 +00:00
parent b86c42d01d
commit 9915433b97
18 changed files with 17 additions and 15 deletions

View File

@ -1,8 +0,0 @@
<a name="authelia-3.0.3"></a>
### [authelia-3.0.3](https://github.com/truecharts/apps/compare/authelia-3.0.2...authelia-3.0.3) (2021-09-14)
#### Fix
* ensure oidc keys get generated on existing authelia installations

View File

@ -0,0 +1,8 @@
<a name="authelia-3.0.4"></a>
### [authelia-3.0.4](https://github.com/truecharts/apps/compare/authelia-3.0.3...authelia-3.0.4) (2021-09-14)
#### Fix
* fix authelia being broken

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 15.3.2
digest: sha256:b253f7f5df09fa780744ea5a252f40f66265907e246089aad0f54c1e630cbd90
generated: "2021-09-14T15:54:11.078960616Z"
generated: "2021-09-14T18:17:41.808691279Z"

View File

@ -38,4 +38,4 @@ sources:
- https://github.com/authelia/chartrepo
- https://github.com/authelia/authelia
type: application
version: 3.0.3
version: 3.0.4

View File

@ -149,7 +149,6 @@ data:
route_randomly: {{ $redis.high_availability.route_randomly }}
{{- end }}
{{- end }}
regulation: {{ toYaml .Values.regulation | nindent 6 }}
storage:
postgres:
@ -201,18 +200,21 @@ data:
- id: {{ $client.id }}
description: {{ default $client.id $client.description }}
secret: {{ default (randAlphaNum 128) $client.secret }}
{{- if hasKey $client "public" }}
{{- if $client.public }}
public: {{ $client.public }}
{{- end }}
authorization_policy: {{ default "two_factor" $client.authorization_policy }}
redirect_uris: {{ toYaml $client.redirect_uris | nindent 10 }}
{{- if hasKey $client "audience" }}
redirect_uris:
{{- range $client.redirect_uris }}
- {{ . }}
{{- end }}
{{- if $client.audience }}
audience: {{ toYaml $client.audience | nindent 10 }}
{{- end }}
scopes: {{ toYaml (default (list "openid" "profile" "email" "groups") $client.scopes) | nindent 10 }}
grant_types: {{ toYaml (default (list "refresh_token" "authorization_code") $client.grant_types) | nindent 10 }}
response_types: {{ toYaml (default (list "code") $client.response_types) | nindent 10 }}
{{- if hasKey $client "response_modes" }}
{{- if $client.response_modes }}
response_modes: {{ toYaml $client.response_modes | nindent 10 }}
{{- end }}
userinfo_signing_algorithm: {{ default "none" $client.userinfo_signing_algorithm }}