Skip to content

Commit f6a72d1

Browse files
authored
Merge pull request #39843 from chrishenzie/read-write-once-pod-docs
Update ReadWriteOncePod feature to beta
2 parents 955b498 + e600a75 commit f6a72d1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

content/en/docs/concepts/storage/persistent-volumes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,8 @@ The access modes are:
637637
: the volume can be mounted as read-write by many nodes.
638638

639639
`ReadWriteOncePod`
640-
: the volume can be mounted as read-write by a single Pod. Use ReadWriteOncePod
640+
: {{< feature-state for_k8s_version="v1.27" state="beta" >}}
641+
the volume can be mounted as read-write by a single Pod. Use ReadWriteOncePod
641642
access mode if you want to ensure that only one pod across whole cluster can
642643
read that PVC or write to it. This is only supported for CSI volumes and
643644
Kubernetes version 1.22+.

content/en/docs/reference/command-line-tools-reference/feature-gates.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ For a reference to old feature gates that are removed, please refer to
174174
| `ProxyTerminatingEndpoints` | `false` | Alpha | 1.22 | 1.25 |
175175
| `ProxyTerminatingEndpoints` | `true` | Beta | 1.26 | |
176176
| `QOSReserved` | `false` | Alpha | 1.11 | |
177-
| `ReadWriteOncePod` | `false` | Alpha | 1.22 | |
177+
| `ReadWriteOncePod` | `false` | Alpha | 1.22 | 1.26 |
178+
| `ReadWriteOncePod` | `true` | Beta | 1.27 | |
178179
| `RecoverVolumeExpansionFailure` | `false` | Alpha | 1.23 | |
179180
| `RemainingItemCount` | `false` | Alpha | 1.15 | 1.15 |
180181
| `RemainingItemCount` | `true` | Beta | 1.16 | |

content/en/docs/tasks/configure-pod-container/security-context.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,7 @@ SELinux label of a volume instantly by using a mount option
449449

450450
To benefit from this speedup, all these conditions must be met:
451451

452-
* Alpha feature gates `ReadWriteOncePod` and `SELinuxMountReadWriteOncePod` must
453-
be enabled.
452+
* Alpha feature gate `SELinuxMountReadWriteOncePod` must be enabled.
454453
* Pod must use PersistentVolumeClaim with `accessModes: ["ReadWriteOncePod"]`.
455454
* Pod (or all its Containers that use the PersistentVolumeClaim) must
456455
have `seLinuxOptions` set.

0 commit comments

Comments
 (0)