You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/concepts/storage/persistent-volumes.md
+16-5Lines changed: 16 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -414,11 +414,22 @@ A PersistentVolume can be mounted on a host in any way supported by the resource
414
414
415
415
The access modes are:
416
416
417
-
* ReadWriteOnce -- the volume can be mounted as read-write by a single node
418
-
* ReadOnlyMany -- the volume can be mounted read-only by many nodes
419
-
* ReadWriteMany -- the volume can be mounted as read-write by many nodes
420
-
* ReadWriteOncePod -- the volume can be mounted as read-write by a single Pod.
421
-
This is only supported for CSI volumes and Kubernetes version 1.22+.
417
+
`ReadWriteOnce`
418
+
: 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 running on the same node.
419
+
420
+
`ReadOnlyMany`
421
+
: the volume can be mounted as read-only by many nodes.
422
+
423
+
`ReadWriteMany`
424
+
: the volume can be mounted as read-write by many nodes.
425
+
426
+
`ReadWriteOncePod`
427
+
: the volume can be mounted as read-write by a single Pod. Use ReadWriteOncePod access mode if you want to ensure that only one pod across whole cluster can read that PVC or write to it. This is only supported for CSI volumes and Kubernetes version 1.22+.
428
+
429
+
430
+
431
+
The blog article [Introducing Single Pod Access Mode for PersistentVolumes](/blog/2021/09/13/read-write-once-pod-access-mode-alpha/) covers this in more detail.
0 commit comments