fix(immich): encode all keys in secret

This commit is contained in:
Stavros Kois 2023-01-03 10:16:55 +02:00 committed by GitHub
parent 3a44fba14c
commit 4a61b0d0f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ name: immich
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/immich
- https://github.com/immich-app/immich
version: 4.0.24
version: 4.0.25
annotations:
truecharts.org/catagories: |
- media

View File

@ -20,6 +20,6 @@ data:
DB_PASSWORD: {{ .Values.postgresql.postgresqlPassword | trimAll "\"" | b64enc }}
REDIS_PASSWORD: {{ .Values.redis.redisPassword | trimAll "\"" | b64enc }}
{{- with .Values.immich.mapbox_key }}
MAPBOX_KEY: {{ . }}
MAPBOX_KEY: {{ . | b64enc}}
{{- end }}
{{- end }}