Clarify ReadWriteOnce allows multiple pods to read and write
Courrently, description of `ReadWriteOnce` leaves room for misinterpretation of the `access` in "multiple pods to access the volume" bit. This leads to spread of confusing information like multiple pods can access but only one pod can write at a time. See also https://github.com/kubernetes/kubernetes/issues/60903#issuecomment-2592863002pull/49447/head
parent
0aad8f5521
commit
b40df0df0a
|
@ -632,7 +632,7 @@ The access modes are:
|
||||||
|
|
||||||
`ReadWriteOnce`
|
`ReadWriteOnce`
|
||||||
: the volume can be mounted as read-write by a single node. ReadWriteOnce access
|
: the volume can be mounted as read-write by a single node. ReadWriteOnce access
|
||||||
mode still can allow multiple pods to access the volume when the pods are
|
mode still can allow multiple pods to access, read or write, the volume when the pods are
|
||||||
running on the same node. For single pod access, please see ReadWriteOncePod.
|
running on the same node. For single pod access, please see ReadWriteOncePod.
|
||||||
|
|
||||||
`ReadOnlyMany`
|
`ReadOnlyMany`
|
||||||
|
|
Loading…
Reference in New Issue