Add roudncube pvc

This commit is contained in:
Quentin Legot 2023-10-09 17:53:56 +02:00
parent ba6035574b
commit ab4f1290fe
2 changed files with 13 additions and 1 deletions

View File

@ -7,6 +7,6 @@ resources:
- postfix-svc.yaml - postfix-svc.yaml
- roundcube-deployment.yaml - roundcube-deployment.yaml
- roundcube-svc.yaml - roundcube-svc.yaml
- roundcube-volume.yaml
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization

View File

@ -0,0 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: roundcube-pv-claim
labels:
app: roundcube
spec:
resources:
requests:
storage: 100Mi
accessModes:
- ReadWriteOnce