26 lines
722 B
Smarty
26 lines
722 B
Smarty
{{/* Define the secrets */}}
|
|
{{- define "outline.secrets" -}}
|
|
---
|
|
|
|
apiVersion: v1
|
|
kind: Secret
|
|
type: Opaque
|
|
metadata:
|
|
name: outline-secrets
|
|
{{- $outlineprevious := lookup "v1" "Secret" .Release.Namespace "outline-secrets" }}
|
|
{{- $secret_key := "" }}
|
|
{{- $utils_secret := "" }}
|
|
data:
|
|
{{- if $outlineprevious}}
|
|
SECRET_KEY: {{ index $outlineprevious.data "SECRET_KEY" }}
|
|
UTILS_SECRET: {{ index $outlineprevious.data "UTILS_SECRET" }}
|
|
{{- else }}
|
|
{{- $secret_key := randAlphaNum 32 }}
|
|
{{- $utils_secret := randAlphaNum 32 }}
|
|
{{/* Outline wants a HEX 32 char string */}}
|
|
SECRET_KEY: {{ (printf "%x" $secret_key) | b64enc }}
|
|
UTILS_SECRET: {{ (printf "%x" $utils_secret) | b64enc }}
|
|
{{- end }}
|
|
|
|
{{- end -}}
|