Kubernetes/File/Templates-Yaml/pv-hostpath.yaml

12 lines
195 B
YAML
Raw Normal View History

2024-08-07 10:54:39 +00:00
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv-hostpath
spec:
storageClassName: manual
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/data"