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

13 lines
261 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 20:59:20 -04:00
storageClassName: standard
2023-04-10 20:40:18 -04:00
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/MainPool/Kubernetes/databases/postgresql"