Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-09-14 15:55:52 +00:00
parent 28c8d2abbd
commit b86c42d01d
18 changed files with 14 additions and 18 deletions

View File

@ -1,8 +0,0 @@
<a name="authelia-3.0.2"></a>
### [authelia-3.0.2](https://github.com/truecharts/apps/compare/authelia-3.0.1...authelia-3.0.2) (2021-09-13)
#### Fix
* use correct authelia tag on SCALE installs

View File

@ -0,0 +1,8 @@
<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

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

View File

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

View File

@ -2041,12 +2041,8 @@ questions:
show_if: [["type", "=", "openvpn"]]
attrs:
- variable: auth
label: "auth"
schema:
type: string
default: ""
- variable: authSecret
label: "authSecret"
label: "authentication credentials"
description: "authentication credentials, seperated by ; example: username;password"
schema:
type: string
default: ""

View File

@ -106,10 +106,10 @@ data:
{{- end }}
{{- end }}
{{- if .Values.identity_providers.oidc.enabled }}
{{- if $autheliaprevious }}
{{- if and ( hasKey $autheliaprevious.data "OIDC_PRIVATE_KEY" ) ( hasKey $autheliaprevious.data "OIDC_HMAC_SECRET" ) }}
OIDC_PRIVATE_KEY: {{ index $autheliaprevious.data "OIDC_PRIVATE_KEY" }}
OIDC_HMAC_SECRET: {{index $autheliaprevious.data "OIDC_HMAC_SECRET" }}
OIDC_HMAC_SECRET: {{ index $autheliaprevious.data "OIDC_HMAC_SECRET" }}
{{- else }}
{{- $oidckey := genPrivateKey "rsa" }}
{{- $oidcsecret := randAlphaNum 32 }}