feat: Mailu is installed and it's working

This commit is contained in:
Nikolai Rodionov
2023-04-22 19:14:11 +02:00
parent a5e526ebfc
commit 968a1ac12e
7 changed files with 184 additions and 18 deletions

View File

@ -0,0 +1,20 @@
---
certificate:
templates:
- |
{{ range .Values.certificate }}
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: {{ .name }}
spec:
dnsNames:
{{- range .dnsNames }}
- {{ . | quote }}
{{- end }}
issuerRef:
kind: {{ .issuer.kind }}
name: {{ .issuer.name }}
secretName: {{ .secretName }}
{{ end }}