Question
As per this official [document](https://kubernetes.io/docs/concepts/storage/persistent- volumes/#access-modes), Kubernetes Persistent Volumes support three types of access modes.
- ReadOnlyMany
- ReadWriteOnce
- ReadWriteMany
The given definitions of them in the document is very high-level. It would be great if someone can explain them in little more detail along with some examples of different use cases where we should use one vs other.
Answer
You should use ReadWriteX
when you plan to have Pods that will need to
write to the volume, and not only read data from the volume.
You should use XMany
when you want the ability for Pods to access the given
volume while those workloads are running on different nodes in the Kubernetes
cluster. These Pods may be multiple replicas belonging to a Deployment, or may
be completely different Pods. There are many cases where it's desirable to
have Pods running on different nodes, for instance if you have multiple Pod
replicas for a single Deployment, then having them run on different nodes can
help ensure some amount of continued availability even if one of the nodes
fails or is being updated.
If you don't use XMany
, but you do have multiple Pods that need access to
the given volume, that will force Kubernetes to schedule all those Pods to run
on whatever node the volume gets mounted to first, which could overload that
node if there are too many such pods, and can impact the availability of
Deployments whose Pods need access to that volume as explained in the previous
paragraph.
So putting all that together:
- If you need to write to the volume, and you may have multiple Pods needing to write to the volume where you'd prefer the flexibility of those Pods being scheduled to different nodes, and
ReadWriteMany
is an option given the volume plugin for your K8s cluster, useReadWriteMany
. - If you need to write to the volume but either you don't have the requirement that multiple pods should be able to write to it, or
ReadWriteMany
simply isn't an available option for you, useReadWriteOnce
. - If you only need to read from the volume, and you may have multiple Pods needing to read from the volume where you'd prefer the flexibility of those Pods being scheduled to different nodes, and
ReadOnlyMany
is an option given the volume plugin for your K8s cluster, useReadOnlyMany
. - If you only need to read from the volume but either you don't have the requirement that multiple pods should be able to read from it, or
ReadOnlyMany
simply isn't an available option for you, useReadWriteOnce
. In this case, you want the volume to be read-only but the limitations of your volume plugin have forced you to chooseReadWriteOnce
(there's noReadOnlyOnce
option). As a good practice, consider thecontainers.volumeMounts.readOnly
setting totrue
in your Pod specs for volume mounts corresponding to volumes that are intended to be read-only.