scale-catalog/stable/flowise/3.4.0/templates/_secrets.tpl

15 lines
472 B
Smarty
Raw Permalink Normal View History

2024-07-13 07:59:30 +00:00
{{/* Define the secrets */}}
{{- define "flowise.secrets" -}}
{{- $secretName := (printf "%s-flowise-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
{{- $flowiseprevious := lookup "v1" "Secret" .Release.Namespace $secretName }}
enabled: true
data:
{{- if $flowiseprevious }}
PASSPHRASE: {{ index $flowiseprevious.data "PASSPHRASE" | b64dec }}
{{- else }}
{{- $pass_key := randAlphaNum 32 }}
PASSPHRASE: {{ $pass_key }}
{{- end }}
{{- end -}}