catalog/stable/servas/3.4.0/templates/_secrets.tpl

12 lines
377 B
Smarty

{{/* Define the secrets */}}
{{- define "servas.secrets" -}}
{{- $secretName := (printf "%s-servas-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) -}}
{{- $key := randAlphaNum 32 -}}
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
{{- $key = index .data "APP_KEY" | b64dec -}}
{{- end }}
enabled: true
data:
APP_KEY: {{ $key }}
{{- end -}}