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:
- https://github.com/outline/outline
type: application
version: 1.0.10
version: 1.0.11
annotations:
truecharts.org/catagories: |
- productivity
+3 -2
View File
@@ -17,8 +17,9 @@ data:
{{- else }}
{{- $secret_key := randAlphaNum 64 }}
{{- $utils_secret := randAlphaNum 64 }}
SECRET_KEY: {{ $secret_key | b64enc }}
UTILS_SECRET: {{ $utils_secret | b64enc }}
{{/* Outline does the b64enc itself, so we pass them clear */}}
SECRET_KEY: {{ $secret_key }}
UTILS_SECRET: {{ $utils_secret }}
{{- end }}
{{- end -}}