41 lines
987 B
YAML
41 lines
987 B
YAML
|
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:
|
||
|
memory: "256Mi"
|
||
|
cpu: "500m"
|
||
|
ports:
|
||
|
- containerPort: 80
|
||
|
name: roundcube
|
||
|
volumes:
|
||
|
- name: roundcube-persistent-storage
|
||
|
persistentVolumeClaim:
|
||
|
claimName: roundcube-pv-claim
|