scale-catalog/stable/ollama/6.0.30/templates/_secrets.tpl

14 lines
415 B
Smarty
Raw Permalink Normal View History

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