scale-catalog/stable/gravity/3.8.14/templates/_secrets.tpl

15 lines
415 B
Smarty
Raw Permalink Normal View History

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