11 lines
380 B
Smarty
11 lines
380 B
Smarty
|
{{- define "linkwarden.secrets" -}}
|
||
|
{{- $secretName := (printf "%s-linkwarden-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
|
||
|
{{- $secret := randAlphaNum 32 -}}
|
||
|
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
|
||
|
{{- $secret = index .data "NEXTAUTH_SECRET" | b64dec -}}
|
||
|
{{- end }}
|
||
|
enabled: true
|
||
|
data:
|
||
|
NEXTAUTH_SECRET: {{ $secret }}
|
||
|
{{- end -}}
|