26 lines
701 B
Smarty
26 lines
701 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 := "" }}
|
|
stringData:
|
|
{{- if $outlineprevious}}
|
|
SECRET_KEY: {{ index $outlineprevious.data "SECRET_KEY" }}
|
|
UTILS_SECRET: {{ index $outlineprevious.data "UTILS_SECRET" }}
|
|
{{- else }}
|
|
{{- $secret_key := randAlphaNum 64 }}
|
|
{{- $utils_secret := randAlphaNum 64 }}
|
|
{{/* Outline does the b64enc itself, so we pass them clear */}}
|
|
SECRET_KEY: {{ $secret_key }}
|
|
UTILS_SECRET: {{ $utils_secret }}
|
|
{{- end }}
|
|
|
|
{{- end -}}
|