sergio_educacionit

persistent volumes

Oct 15th, 2025 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4. name: wordpress-pv
  5. spec:
  6. capacity:
  7. storage: 2Gi
  8. accessModes:
  9. - ReadWriteOnce
  10. hostPath:
  11. path: /opt/data/wordpress
  12. persistentVolumeReclaimPolicy: Retain
  13.  
  14. ---
  15. apiVersion: v1
  16. kind: PersistentVolume
  17. metadata:
  18. name: db-pv
  19. spec:
  20. capacity:
  21. storage: 2Gi
  22. accessModes:
  23. - ReadWriteOnce
  24. hostPath:
  25. path: /opt/data/db
  26. persistentVolumeReclaimPolicy: Retain
Advertisement
Add Comment
Please, Sign In to add comment