pv-local-registry.yaml 446 B

12345678910111213141516171819202122232425262728
  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4. name: mypdr-main-folder
  5. labels:
  6. app: mypdr
  7. spec:
  8. capacity:
  9. storage: 100Mi
  10. accessModes:
  11. - ReadWriteOnce
  12. hostPath:
  13. path: "/mnt/Externo/mypdr/main"
  14. ---
  15. apiVersion: v1
  16. kind: PersistentVolume
  17. metadata:
  18. name: mypdr-a2auth-folder
  19. labels:
  20. app: mypdr
  21. spec:
  22. capacity:
  23. storage: 10Mi
  24. accessModes:
  25. - ReadWriteOnce
  26. hostPath:
  27. path: "/mnt/Externo/mypdr/a2auth"