Add pg backup nfs pv

This commit is contained in:
2023-03-17 11:52:23 +11:00
parent e6a2659e44
commit 5e397783e2
+14
View File
@@ -104,6 +104,20 @@ spec:
server: 192.168.1.4
path: "/backups"
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: pg-backups-nfs
spec:
capacity:
storage: 100Gi
accessModes:
- ReadWriteMany
nfs:
server: 192.168.1.4
path: "/backups"
---
apiVersion: v1
kind: PersistentVolumeClaim