15 lines
415 B
Smarty
15 lines
415 B
Smarty
{{/* 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 -}}
|