fix(outline): don't b64enc secret (#2394)

This commit is contained in:
Stavros Kois
2022-04-02 15:42:24 +00:00
committed by GitHub
parent 80a9d9996b
commit 93293a2567
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ name: outline
sources: sources:
- https://github.com/outline/outline - https://github.com/outline/outline
type: application type: application
version: 1.0.10 version: 1.0.11
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- productivity - productivity
+3 -2
View File
@@ -17,8 +17,9 @@ data:
{{- else }} {{- else }}
{{- $secret_key := randAlphaNum 64 }} {{- $secret_key := randAlphaNum 64 }}
{{- $utils_secret := randAlphaNum 64 }} {{- $utils_secret := randAlphaNum 64 }}
SECRET_KEY: {{ $secret_key | b64enc }} {{/* Outline does the b64enc itself, so we pass them clear */}}
UTILS_SECRET: {{ $utils_secret | b64enc }} SECRET_KEY: {{ $secret_key }}
UTILS_SECRET: {{ $utils_secret }}
{{- end }} {{- end }}
{{- end -}} {{- end -}}