@@ -818,12 +818,12 @@ The following types of PersistentVolume are deprecated. This means that support
818
818
819
819
以下的持久卷已被弃用。这意味着当前仍是支持的,但是 Kubernetes 将来的发行版会将其移除。
820
820
821
- * [`cinder`](/docs/concepts/storage/volumes/#cinder) - Cinder(OpenStack 块存储)(于 v1.18 **弃用**)
821
+ * [`cinder`](/zh-cn/ docs/concepts/storage/volumes/#cinder) - Cinder(OpenStack 块存储)(于 v1.18 **弃用**)
822
822
* [`flexVolume`](/zh-cn/docs/concepts/storage/volumes/#flexVolume) - FlexVolume (于 v1.23 **弃用**)
823
- * [`flocker`](/docs/concepts/storage/volumes/#flocker) - Flocker 存储(于 v1.22 **弃用**)
824
- * [`quobyte`](/docs/concepts/storage/volumes/#quobyte) - Quobyte 卷
823
+ * [`flocker`](/zh-cn/ docs/concepts/storage/volumes/#flocker) - Flocker 存储(于 v1.22 **弃用**)
824
+ * [`quobyte`](/zh-cn/ docs/concepts/storage/volumes/#quobyte) - Quobyte 卷
825
825
(于 v1.22 **弃用**)
826
- * [`storageos`](/docs/concepts/storage/volumes/#storageos) - StorageOS 卷(于 v1.22 **弃用**)
826
+ * [`storageos`](/zh-cn/ docs/concepts/storage/volumes/#storageos) - StorageOS 卷(于 v1.22 **弃用**)
827
827
828
828
<!--
829
829
Older versions of Kubernetes also supported the following in-tree PersistentVolume types :
@@ -837,7 +837,7 @@ Older versions of Kubernetes also supported the following in-tree PersistentVolu
837
837
旧版本的 Kubernetes 仍支持这些“树内(In-Tree)”持久卷类型:
838
838
839
839
* `photonPersistentDisk` - Photon 控制器持久化盘。(v1.15 之后 **不可用**)
840
- * [`scaleIO`](/docs/concepts/storage/volumes/#scaleio) - ScaleIO 卷(v1.21 之后 **不可用**)
840
+ * [`scaleIO`](/zh-cn/ docs/concepts/storage/volumes/#scaleio) - ScaleIO 卷(v1.21 之后 **不可用**)
841
841
842
842
<!--
843
843
# # Persistent Volumes
@@ -921,9 +921,8 @@ on the device before mounting it for the first time.
921
921
` volumeMode` 是一个可选的 API 参数。
922
922
如果该参数被省略,默认的卷模式是 `Filesystem`。
923
923
924
- ` volumeMode` 属性设置为 `Filesystem` 的卷会被 Pod *挂载(Mount)* 到某个目录。
925
- 如果卷的存储来自某块设备而该设备目前为空,Kuberneretes 会在第一次挂载卷之前
926
- 在设备上创建文件系统。
924
+ ` volumeMode` 属性设置为 `Filesystem` 的卷会被 Pod **挂载(Mount)** 到某个目录。
925
+ 如果卷的存储来自某块设备而该设备目前为空,Kuberneretes 会在第一次挂载卷之前在设备上创建文件系统。
927
926
928
927
<!--
929
928
You can set the value of `volumeMode` to `Block` to use a volume as a raw block device.
@@ -936,10 +935,10 @@ for an example on how to use a volume with `volumeMode: Block` in a Pod.
936
935
-->
937
936
你可以将 `volumeMode` 设置为 `Block`,以便将卷作为原始块设备来使用。
938
937
这类卷以块设备的方式交给 Pod 使用,其上没有任何文件系统。
939
- 这种模式对于为 Pod 提供一种使用最快可能方式来访问卷而言很有帮助,Pod 和
940
- 卷之间不存在文件系统层 。另外,Pod 中运行的应用必须知道如何处理原始块设备。
941
- 关于如何在 Pod 中使用 `volumeMode : Block` 的卷,可参阅
942
- [原始块卷支持](#raw-block-volume-support)。
938
+ 这种模式对于为 Pod 提供一种使用最快可能方式来访问卷而言很有帮助,
939
+ Pod 和卷之间不存在文件系统层 。另外,Pod 中运行的应用必须知道如何处理原始块设备。
940
+ 关于如何在 Pod 中使用 `volumeMode : Block` 的卷,
941
+ 可参阅 [原始块卷支持](#raw-block-volume-support)。
943
942
944
943
<!--
945
944
# ## Access Modes
@@ -972,9 +971,9 @@ The blog article [Introducing Single Pod Access Mode for PersistentVolumes](/blo
972
971
-->
973
972
访问模式有:
974
973
975
- ` ReadWriteOnce`
974
+ ` ReadWriteOnce`
976
975
: 卷可以被一个节点以读写方式挂载。
977
- ReadWriteOnce 访问模式也允许运行在同一节点上的多个 Pod 访问卷。
976
+ ReadWriteOnce 访问模式也允许运行在同一节点上的多个 Pod 访问卷。
978
977
979
978
` ReadOnlyMany`
980
979
: 卷可以被多个节点以只读方式挂载。
@@ -1039,7 +1038,7 @@ Kubernetes 使用卷访问模式来匹配 PersistentVolumeClaim 和 PersistentVo
1039
1038
| AzureFile | ✓ | ✓ | ✓ | - |
1040
1039
| AzureDisk | ✓ | - | - | - |
1041
1040
| CephFS | ✓ | ✓ | ✓ | - |
1042
- | Cinder | ✓ | - | - | - |
1041
+ | Cinder | ✓ | - | ([如果多次挂接卷可用](https://github.com/kubernetes/cloud-provider-openstack/blob/master/docs/cinder-csi-plugin/features.md#multi-attach-volumes)) | - |
1043
1042
| CSI | 取决于驱动 | 取决于驱动 | 取决于驱动 | 取决于驱动 |
1044
1043
| FC | ✓ | ✓ | - | - |
1045
1044
| FlexVolume | ✓ | ✓ | 取决于驱动 | - |
@@ -1081,7 +1080,6 @@ it will become fully deprecated in a future Kubernetes release.
1081
1080
` storageClassName` 属性。这一注解目前仍然起作用,不过在将来的 Kubernetes
1082
1081
发布版本中该注解会被彻底废弃。
1083
1082
1084
-
1085
1083
<!--
1086
1084
# ## Reclaim Policy
1087
1085
@@ -1174,8 +1172,8 @@ A PV can specify node affinity to define constraints that limit what nodes this
1174
1172
-->
1175
1173
每个 PV 卷可以通过设置节点亲和性来定义一些约束,进而限制从哪些节点上可以访问此卷。
1176
1174
使用这些卷的 Pod 只会被调度到节点亲和性规则所选择的节点上执行。
1177
- 要设置节点亲和性,配置 PV 卷 `.spec` 中的 `nodeAffinity`。
1178
- [持久卷](/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-v1/#PersistentVolumeSpec)
1175
+ 要设置节点亲和性,配置 PV 卷 `.spec` 中的 `nodeAffinity`。
1176
+ [持久卷](/zh-cn/ docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-v1/#PersistentVolumeSpec)
1179
1177
API 参考关于该字段的更多细节。
1180
1178
1181
1179
<!--
@@ -1248,7 +1246,7 @@ Claims use [the same convention as volumes](#volume-mode) to indicate the consum
1248
1246
-->
1249
1247
# ## 卷模式 {#volume-modes}
1250
1248
1251
- 申领使用[与卷相同的约定](#access-modes )来表明是将卷作为文件系统还是块设备来使用。
1249
+ 申领使用[与卷相同的约定](#volume-mode )来表明是将卷作为文件系统还是块设备来使用。
1252
1250
1253
1251
<!--
1254
1252
# ## Resources
@@ -1423,7 +1421,7 @@ See [an example of `hostPath` typed volume](/docs/tasks/configure-pod-container/
1423
1421
# ## 类型为 `hostpath` 的 PersistentVolume {#persistentvolumes-typed-hostpath}
1424
1422
1425
1423
` hostPath` PersistentVolume 使用节点上的文件或目录来模拟网络附加(network-attached)存储。
1426
- 相关细节可参阅[`hostPath` 卷示例](/zh-cn/docs/tasks/configure-pod-container/configure-persistent-volume-storage/#create-a-persistentvolume)。
1424
+ 相关细节可参阅 [`hostPath` 卷示例](/zh-cn/docs/tasks/configure-pod-container/configure-persistent-volume-storage/#create-a-persistentvolume)。
1427
1425
1428
1426
<!--
1429
1427
# # Raw Block Volume Support
@@ -1840,6 +1838,6 @@ Read about the APIs described in this page:
1840
1838
1841
1839
阅读以下页面中描述的 API:
1842
1840
1843
- * [`PersistentVolume`](/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-v1/)
1844
- * [`PersistentVolumeClaim`](/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/)
1841
+ * [`PersistentVolume`](/zh-cn/ docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-v1/)
1842
+ * [`PersistentVolumeClaim`](/zh-cn/ docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/)
1845
1843
0 commit comments