Initial Commit

This commit is contained in:
2021-09-26 17:08:01 +02:00
commit 3792eaa844
12 changed files with 570 additions and 0 deletions

15
templates/secrets.yaml Normal file
View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Secret
metadata:
name: {{ include "postfixadmin-fetchmail.fullname" . }}
type: Opaque
stringData:
{{- if not (hasKey .Values "config") -}}
{{- $_ := set .Values "config" dict -}}
{{- end -}}
{{/* SETUP CONFIG */}}
{{ range $key, $value := .Values.config }}
{{ upper $key}}: {{ quote $value }}
{{ end }}