We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd6b601 commit 23100b1Copy full SHA for 23100b1
deployment/k8s/postgres-pv.yaml
@@ -1 +1,15 @@
1
-
+apiVersion: v1
2
+kind: PersistentVolume
3
+metadata:
4
+ name: postgres-pv-volume
5
+ labels:
6
+ type: local
7
+ app: postgres
8
+spec:
9
+ storageClassName: manual
10
+ capacity:
11
+ storage: 5Gi
12
+ accessModes:
13
+ - ReadWriteMany
14
+ hostPath:
15
+ path: "/mnt/data"
deployment/k8s/postgres-pvc.yaml
@@ -1 +1,13 @@
+kind: PersistentVolumeClaim
+ name: postgres-pv-claim
+ resources:
+ requests:
0 commit comments