Files
helm-pixelfed/charts/pixelfed/templates/secret_mail.yaml
T
2024-12-29 23:44:37 +01:00

13 lines
315 B
YAML

{{- if not .Values.externalDatabase.existingSecret }}
---
apiVersion: v1
kind: Secret
metadata:
name: pixelfed-mail
data:
host: {{ .Values.pixelfed.mail.host }}
port: {{ .Values.pixelfed.mail.port }}
username: {{ .Values.pixelfed.mail.username }}
password: {{ .Values.pixelfed.mail.password }}
{{- end }}