fix(apps): misc fixes
This commit is contained in:
parent
7dfbf4ff2c
commit
1eccab7041
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/audacity
|
||||
pullPolicy: IfNotPresent
|
||||
tag: version-3.0.2@sha256:a0a829c08c74236b405888f26c4a52251b403db6ca8946895d00505ba1a1ffc7
|
||||
tag: v3.0.2@sha256:a0a829c08c74236b405888f26c4a52251b403db6ca8946895d00505ba1a1ffc7
|
||||
env:
|
||||
PUID: 568
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/beets
|
||||
pullPolicy: IfNotPresent
|
||||
tag: version-1.5.0@sha256:031e2eec738848149e808eb102279817aa3fea8e57d012191daf1c471de07703
|
||||
tag: v1.5.0@sha256:031e2eec738848149e808eb102279817aa3fea8e57d012191daf1c471de07703
|
||||
|
||||
env:
|
||||
PUID: 568
|
||||
|
|
|
@ -4,7 +4,7 @@ image:
|
|||
# -- image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
# -- image tag
|
||||
tag: version-v2009.1.0@sha256:300d9d7d0c343daf7e5964737cfb25fb1dad5cff29ebe45076070e04c924014a
|
||||
tag: v2009.1.0@sha256:300d9d7d0c343daf7e5964737cfb25fb1dad5cff29ebe45076070e04c924014a
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
|
|
|
@ -24,7 +24,7 @@ service:
|
|||
ports:
|
||||
main:
|
||||
port: 10063
|
||||
targetPort: 8443
|
||||
targetPort: 8080
|
||||
|
||||
persistence:
|
||||
config:
|
||||
|
|
|
@ -2,7 +2,7 @@ image:
|
|||
# -- image repository
|
||||
repository: tccr.io/truecharts/deconz
|
||||
# -- image tag
|
||||
tag: v2.13.02@sha256:ed4a88ee75eeaf04155c3e733cf38011247139ed265d178b67ddde46889eca8c
|
||||
tag: v2.13.01@sha256:92a7a439e6010e21265fa5beaa47b0172bc6b6682f4e2d26bcd43c772ff7ddbd
|
||||
# -- image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
|
|
Loading…
Reference in New Issue