c4k-taiga/src/main/resources/taiga/persistent-volume.yaml

14 lines
236 B
YAML
Raw Normal View History

2023-08-16 12:31:46 +00:00
kind: PersistentVolume
apiVersion: v1
metadata:
name: postgres-pv-volume
labels:
type: local
spec:
storageClassName: manual
accessModes:
- ReadWriteOnce
capacity:
storage: 10Gi
hostPath:
path: "/var/postgres"