2023-04-10 20:40:18 -04:00
|
|
|
apiVersion: v1
|
|
|
|
kind: PersistentVolume
|
|
|
|
metadata:
|
|
|
|
name: postgresql-pv
|
|
|
|
namespace: database
|
|
|
|
spec:
|
2023-04-10 21:35:17 -04:00
|
|
|
storageClassName: local-path
|
2023-04-10 21:28:45 -04:00
|
|
|
persistentVolumeReclaimPolicy: Retain
|
2023-04-10 20:40:18 -04:00
|
|
|
capacity:
|
|
|
|
storage: 10Gi
|
|
|
|
accessModes:
|
|
|
|
- ReadWriteOnce
|
|
|
|
hostPath:
|
|
|
|
path: "/mnt/MainPool/Kubernetes/databases/postgresql"
|