15 lines
378 B
Smarty
15 lines
378 B
Smarty
{{/* Define the secrets */}}
|
|
{{- define "kutt.secrets" -}}
|
|
enabled: true
|
|
{{- $kuttprevious := lookup "v1" "Secret" .Release.Namespace "kutt-secrets" }}
|
|
{{- $jwt_secret := "" }}
|
|
data:
|
|
{{- if $kuttprevious}}
|
|
JWT_SECRET: {{ index $kuttprevious.data "JWT_SECRET" }}
|
|
{{- else }}
|
|
{{- $jwt_secret := randAlphaNum 32 }}
|
|
JWT_SECRET: {{ $jwt_secret }}
|
|
{{- end }}
|
|
|
|
{{- end -}}
|