16 lines
490 B
Smarty
16 lines
490 B
Smarty
{{/* Define the secrets */}}
|
|
{{- define "hammond.secrets" -}}
|
|
{{- $secretName := printf "%s-secrets" (include "tc.v1.common.lib.chart.names.fullname" .) }}
|
|
{{- $hammondprevious := lookup "v1" "Secret" .Release.Namespace $secretName }}
|
|
{{- $jwt_secret := "" }}
|
|
enabled: true
|
|
data:
|
|
{{- if $hammondprevious}}
|
|
JWT_SECRET: {{ index $hammondprevious.data "JWT_SECRET" }}
|
|
{{- else }}
|
|
{{- $jwt_secret := randAlphaNum 32 }}
|
|
JWT_SECRET: {{ $jwt_secret | b64enc }}
|
|
{{- end }}
|
|
|
|
{{- end -}}
|