mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-26 16:34:21 +08:00
15 lines
373 B
YAML
15 lines
373 B
YAML
{{- $chart := "mail" -}}
|
|
{{- $fullName := include (print $chart ".fullname") . -}}
|
|
{{- $labels := include (print $chart ".labels") . -}}
|
|
{{- with .Values.secret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ $fullName }}
|
|
labels:
|
|
{{- $labels | nindent 4 }}
|
|
data:
|
|
{{- range $key, $value := . }}
|
|
{{ $key }}: {{ $value | b64enc | quote }}
|
|
{{- end }}
|
|
{{ end }}
|