Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-12-06 00:02:30 +00:00
parent 03cbfcf53b
commit 2b7e192ed4
17 changed files with 17 additions and 12 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="authelia-8.0.13"></a>
### [authelia-8.0.13](https://github.com/truecharts/apps/compare/authelia-8.0.12...authelia-8.0.13) (2021-12-05)
#### Fix
* correct upgrade handling without encryption key
<a name="authelia-8.0.12"></a>
### authelia-8.0.12 (2021-12-05)
@ -88,12 +97,3 @@
* revert authelia default ports change
* update non-major deps helm releases ([#1432](https://github.com/truecharts/apps/issues/1432))
#### Fix
* correct some ports mistakes ([#1416](https://github.com/truecharts/apps/issues/1416))
* move conflicting ports to 10xxx range ([#1415](https://github.com/truecharts/apps/issues/1415))
* fix typo in theme selection ([#1428](https://github.com/truecharts/apps/issues/1428))

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://truecharts.org/
version: 1.0.27
digest: sha256:c57e452f0a17297c59cb63a1049688892bcf8422f93200e7a474082dac656385
generated: "2021-12-05T22:46:47.321604023Z"
generated: "2021-12-06T00:00:08.010404524Z"

View File

@ -38,7 +38,7 @@ sources:
- https://github.com/authelia/chartrepo
- https://github.com/authelia/authelia
type: application
version: 8.0.12
version: 8.0.13
annotations:
truecharts.org/catagories: |
- security

View File

@ -15,9 +15,14 @@ metadata:
{{- $encryptionkey := "" }}
data:
{{- if $autheliaprevious }}
ENCRYPTION_KEY: {{ index $autheliaprevious.data "ENCRYPTION_KEY" }}
SESSION_ENCRYPTION_KEY: {{ index $autheliaprevious.data "SESSION_ENCRYPTION_KEY" }}
JWT_TOKEN: {{ index $autheliaprevious.data "JWT_TOKEN" }}
{{- if ( hasKey $autheliaprevious.data "ENCRYPTION_KEY" ) }}
ENCRYPTION_KEY: {{ index $autheliaprevious.data "ENCRYPTION_KEY" }}
{{- else }}
{{- $encryptionkey := randAlphaNum 100 }}
ENCRYPTION_KEY: {{ $encryptionkey | b64enc | quote }}
{{- end }}
{{- else }}
{{- $jwtsecret := randAlphaNum 50 }}
{{- $sessionsecret := randAlphaNum 50 }}