2023-10-09 16:38:06 +02:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: roundcube
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: roundcube
|
|
|
|
tier: frontend
|
|
|
|
strategy:
|
|
|
|
type: Recreate
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: roundcube
|
|
|
|
tier: frontend
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: roundcube
|
|
|
|
image: roundcube/roundcubemail:latest
|
|
|
|
env:
|
|
|
|
- name: ROUNDCUBEMAIL_DEFAULT_HOST
|
|
|
|
value: dovecot-imap
|
|
|
|
- name: ROUNDCUBEMAIL_SMTP_SERVER
|
|
|
|
value: postfix-msa
|
|
|
|
- name: ROUNDCUBEMAIL_DB_TYPE
|
|
|
|
value: sqlite
|
|
|
|
volumeMounts:
|
|
|
|
- name: roundcube-persistent-storage
|
|
|
|
mountPath: /var/roundcube
|
|
|
|
resources:
|
|
|
|
limits:
|
2023-10-09 18:02:44 +02:00
|
|
|
memory: "128Mi"
|
|
|
|
cpu: "300m"
|
2023-10-09 16:38:06 +02:00
|
|
|
ports:
|
|
|
|
- containerPort: 80
|
|
|
|
name: roundcube
|
|
|
|
volumes:
|
|
|
|
- name: roundcube-persistent-storage
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: roundcube-pv-claim
|