123456789101112131415161718192021222324252627 |
- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: local-pv-1
- labels:
- type: local
- spec:
- capacity:
- storage: 20Gi
- accessModes:
- - ReadWriteOnce
- hostPath:
- path: /tmp/pv-1
- ---
- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: local-pv-2
- labels:
- type: local
- spec:
- capacity:
- storage: 20Gi
- accessModes:
- - ReadWriteOnce
- hostPath:
- path: /tmp/pv-2
|