From 296695d72937eec6134b50ce2bf28f7a20c13c1b Mon Sep 17 00:00:00 2001 From: Takahiro Tsuruda Date: Tue, 24 Dec 2019 02:57:33 +0800 Subject: [PATCH] BlockVolume is no longer in alpha (#18167) * BlockVolume is no longer alpha Signed-off-by: dulltz * Apply comment https://github.com/kubernetes/website/pull/18167#discussion_r358304226 Co-Authored-By: Tim Bannister * Apply comment https://github.com/kubernetes/website/pull/18167#discussion_r358519588 * Apply comment https://github.com/kubernetes/website/pull/18167#pullrequestreview-335535663 Signed-off-by: dulltz Co-authored-by: Tim Bannister --- content/en/docs/concepts/storage/volumes.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/content/en/docs/concepts/storage/volumes.md b/content/en/docs/concepts/storage/volumes.md index 0bf26b37e8..cbace11392 100644 --- a/content/en/docs/concepts/storage/volumes.md +++ b/content/en/docs/concepts/storage/volumes.md @@ -657,7 +657,6 @@ metadata: spec: capacity: storage: 100Gi - # volumeMode field requires BlockVolume Alpha feature gate to be enabled. volumeMode: Filesystem accessModes: - ReadWriteOnce @@ -679,9 +678,8 @@ PersistentVolume `nodeAffinity` is required when using local volumes. It enables the Kubernetes scheduler to correctly schedule Pods using local volumes to the correct node. -PersistentVolume `volumeMode` can now be set to "Block" (instead of the default -value "Filesystem") to expose the local volume as a raw block device. The -`volumeMode` field requires `BlockVolume` Alpha feature gate to be enabled. +PersistentVolume `volumeMode` can be set to "Block" (instead of the default +value "Filesystem") to expose the local volume as a raw block device. When using local volumes, it is recommended to create a StorageClass with `volumeBindingMode` set to `WaitForFirstConsumer`. See the