mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 10:22:54 +02:00
39 lines
679 B
YAML
39 lines
679 B
YAML
image:
|
|
repository: stalwartlabs/stalwart
|
|
pullPolicy: IfNotPresent
|
|
tag: "latest"
|
|
|
|
service:
|
|
type: NodePort
|
|
ports:
|
|
http: 8080
|
|
https: 443
|
|
smtp: 25
|
|
submission: 587
|
|
smtps: 465
|
|
imap: 143
|
|
imaps: 993
|
|
sieve: 4190
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: longhorn
|
|
accessMode: ReadWriteOnce
|
|
size: 10Gi
|
|
mountPath: /opt/stalwart
|
|
|
|
replicaCount: 1
|
|
|
|
tls:
|
|
secretName: letsencrypt-prod
|
|
|
|
config:
|
|
hostname: "mail.hensen.io"
|
|
# Whitelist cluster IPs to prevent ingress from being banned
|
|
allowedIPs:
|
|
- "127.0.0.1"
|
|
- "::1"
|
|
- "10.0.0.0/8"
|
|
# Trust X-Forwarded-For header from reverse proxy for real client IP
|
|
useXForwarded: true
|