fix(outline): don't b64enc secret (#2394)
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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 -}}
|
||||||
|
|||||||
Reference in New Issue
Block a user