fix(apps): Removed some double b64enc on autogenerated secrets, also some quotes off them. (#1937)

* fix(anonaddy): only b64enc once

* fix(pydio-cells): trim `"` from dbPass

* chore(paperless-ng): don't quote secret

* fix(linkace): don't quote secret

* chore(librephotos): don't quote secret

* chore(leantime): don't quote secret

* chore(fireflyiii): don't quote secret

* chore(authelia): dont quote secret
This commit is contained in:
Stavros Kois
2022-02-23 00:10:13 +01:00
committed by GitHub
parent bee3228738
commit d1dd5c4660
16 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ sources:
- https://github.com/authelia/chartrepo
- https://github.com/authelia/authelia
type: application
version: 8.0.40
version: 8.0.41
annotations:
truecharts.org/catagories: |
- security
@@ -21,15 +21,15 @@ data:
ENCRYPTION_KEY: {{ index $autheliaprevious.data "ENCRYPTION_KEY" }}
{{- else }}
{{- $encryptionkey := randAlphaNum 100 }}
ENCRYPTION_KEY: {{ $encryptionkey | b64enc | quote }}
ENCRYPTION_KEY: {{ $encryptionkey | b64enc }}
{{- end }}
{{- else }}
{{- $jwtsecret := randAlphaNum 50 }}
{{- $sessionsecret := randAlphaNum 50 }}
{{- $encryptionkey := randAlphaNum 100 }}
SESSION_ENCRYPTION_KEY: {{ $sessionsecret | b64enc | quote }}
JWT_TOKEN: {{ $jwtsecret | b64enc | quote }}
ENCRYPTION_KEY: {{ $encryptionkey | b64enc | quote }}
SESSION_ENCRYPTION_KEY: {{ $sessionsecret | b64enc }}
JWT_TOKEN: {{ $jwtsecret | b64enc}}
ENCRYPTION_KEY: {{ $encryptionkey | b64enc }}
{{- end }}
{{- if .Values.authentication_backend.ldap.enabled }}