k3s-cluster/cluster/apps/database/postgresql/pgsql-pv.yaml

14 lines
304 B
YAML
Raw Normal View History

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