Skip to content

Instantly share code, notes, and snippets.

@zawzaww
Created June 18, 2025 08:17
Show Gist options
  • Save zawzaww/fa75e3e0e587b8371b7c480c67bd2fc6 to your computer and use it in GitHub Desktop.
Save zawzaww/fa75e3e0e587b8371b7c480c67bd2fc6 to your computer and use it in GitHub Desktop.
The available access modes on Kubernetes.
Access Mode Multi Nodes Read-Write Common Storage Types
ReadWriteOnce (RWO) ❌ No ✅ Yes e.g; Rancher's local-path, AWS EBS
ReadOnlyMany (ROX) ✅ Yes ❌ No e.g; NFS, CephFS
ReadWriteMany (RWX) ✅ Yes ✅ Yes e.g; Azure Files, CephFS, NFS, Longhorn, OpenEBS and etc...
ReadWriteOncePod (RWOP) ❌ No (Only one Pod) ✅ Yes e.g; Block storage like RWO but single Pod restriction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment