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

14 lines
303 B
YAML
Raw Normal View History

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