55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
## SnappyMail - Custom values for dvirlabs.com
|
|
## Override default chart values here
|
|
|
|
## Namespace
|
|
namespace: mail
|
|
|
|
## Image configuration
|
|
image:
|
|
repository: djmaze/snappymail
|
|
tag: "2.39"
|
|
pullPolicy: IfNotPresent
|
|
|
|
## Persistence - using NFS storage
|
|
persistence:
|
|
enabled: true
|
|
storageClass: nfs-client
|
|
accessMode: ReadWriteOnce
|
|
size: 2Gi
|
|
mountPath: /var/lib/snappymail
|
|
|
|
## Ingress for webmail UI
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
hosts:
|
|
- host: webmail.dvirlabs.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
|
|
## Stalwart mail server connection
|
|
## SnappyMail will connect to Stalwart internally
|
|
stalwart:
|
|
serviceName: stalwart
|
|
imap:
|
|
host: stalwart.mail.svc.cluster.local
|
|
port: 993
|
|
secure: true
|
|
smtp:
|
|
host: stalwart.mail.svc.cluster.local
|
|
port: 587
|
|
secure: true
|
|
|
|
## Resource allocation
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "200m"
|
|
limits:
|
|
memory: "1Gi"
|
|
cpu: "1000m"
|