local-volumes.yaml 396 B

123456789101112131415161718192021222324252627
  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4. name: local-pv-1
  5. labels:
  6. type: local
  7. spec:
  8. capacity:
  9. storage: 20Gi
  10. accessModes:
  11. - ReadWriteOnce
  12. hostPath:
  13. path: /tmp/pv-1
  14. ---
  15. apiVersion: v1
  16. kind: PersistentVolume
  17. metadata:
  18. name: local-pv-2
  19. labels:
  20. type: local
  21. spec:
  22. capacity:
  23. storage: 20Gi
  24. accessModes:
  25. - ReadWriteOnce
  26. hostPath:
  27. path: /tmp/pv-2