Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-12-03 22:28:45 +00:00
parent 473ed0f661
commit 270dc32023
17 changed files with 3154 additions and 12 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="authelia-8.0.7"></a>
### [authelia-8.0.7](https://github.com/truecharts/apps/compare/authelia-8.0.6...authelia-8.0.7) (2021-12-03)
#### Fix
* misc fixes
<a name="authelia-8.0.6"></a>
### [authelia-8.0.6](https://github.com/truecharts/apps/compare/authelia-8.0.5...authelia-8.0.6) (2021-12-03)
@ -88,12 +97,3 @@
#### Chore
* fixes around the GUI refactor ([#1316](https://github.com/truecharts/apps/issues/1316))
* move port above advanced in GUI ([#1326](https://github.com/truecharts/apps/issues/1326))
* clean up Chart.yaml ([#1322](https://github.com/truecharts/apps/issues/1322))
* update non-major deps helm releases ([#1328](https://github.com/truecharts/apps/issues/1328))
<a name="authelia-7.0.10"></a>
### [authelia-7.0.10](https://github.com/truecharts/apps/compare/authelia-7.0.9...authelia-7.0.10) (2021-11-12)

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://truecharts.org/
version: 1.0.19
digest: sha256:cc97b7fd8f9a3693928a4cc9b7ffb86468941c32b8fe30a37585c6e956cdce68
generated: "2021-12-03T14:27:42.194208691Z"
generated: "2021-12-03T22:23:53.241800931Z"

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -12,15 +12,19 @@ metadata:
{{- $oidcsecret := "" }}
{{- $jwtsecret := "" }}
{{- $sessionsecret := "" }}
{{- $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" }}
{{- else }}
{{- $jwtsecret := randAlphaNum 50 }}
{{- $sessionsecret := randAlphaNum 50 }}
SESSION_ENCRYPTION_KEY: {{ $jwtsecret | b64enc | quote }}
{{- $encryptionkey := randAlphaNum 100 }}
SESSION_ENCRYPTION_KEY: {{ $sessionsecret | b64enc | quote }}
JWT_TOKEN: {{ $jwtsecret | b64enc | quote }}
ENCRYPTION_KEY: {{ $encryptionkey | b64enc | quote }}
{{- end }}
{{- if .Values.authentication_backend.ldap.enabled }}

View File

@ -36,6 +36,8 @@ volumeSpec:
path: JWT_TOKEN
- key: "SESSION_ENCRYPTION_KEY"
path: SESSION_ENCRYPTION_KEY
- key: "ENCRYPTION_KEY"
path: ENCRYPTION_KEY
- key: "STORAGE_PASSWORD"
path: STORAGE_PASSWORD
{{- if .Values.authentication_backend.ldap.enabled }}