Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
28c8d2abbd
commit
b86c42d01d
|
@ -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
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -9,4 +9,4 @@ dependencies:
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 15.3.2
|
version: 15.3.2
|
||||||
digest: sha256:b253f7f5df09fa780744ea5a252f40f66265907e246089aad0f54c1e630cbd90
|
digest: sha256:b253f7f5df09fa780744ea5a252f40f66265907e246089aad0f54c1e630cbd90
|
||||||
generated: "2021-09-13T19:08:29.483884247Z"
|
generated: "2021-09-14T15:54:11.078960616Z"
|
|
@ -38,4 +38,4 @@ sources:
|
||||||
- https://github.com/authelia/chartrepo
|
- https://github.com/authelia/chartrepo
|
||||||
- https://github.com/authelia/authelia
|
- https://github.com/authelia/authelia
|
||||||
type: application
|
type: application
|
||||||
version: 3.0.2
|
version: 3.0.3
|
|
@ -2041,12 +2041,8 @@ questions:
|
||||||
show_if: [["type", "=", "openvpn"]]
|
show_if: [["type", "=", "openvpn"]]
|
||||||
attrs:
|
attrs:
|
||||||
- variable: auth
|
- variable: auth
|
||||||
label: "auth"
|
label: "authentication credentials"
|
||||||
schema:
|
description: "authentication credentials, seperated by ; example: username;password"
|
||||||
type: string
|
|
||||||
default: ""
|
|
||||||
- variable: authSecret
|
|
||||||
label: "authSecret"
|
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: ""
|
default: ""
|
|
@ -106,10 +106,10 @@ data:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{- if .Values.identity_providers.oidc.enabled }}
|
|
||||||
{{- if $autheliaprevious }}
|
{{- 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_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 }}
|
{{- else }}
|
||||||
{{- $oidckey := genPrivateKey "rsa" }}
|
{{- $oidckey := genPrivateKey "rsa" }}
|
||||||
{{- $oidcsecret := randAlphaNum 32 }}
|
{{- $oidcsecret := randAlphaNum 32 }}
|
Loading…
Reference in New Issue