Skip to content

Commit 03ae214

Browse files
authored
Merge pull request #49471 from Eason1118/lwj_dev
[zh-cn] sync persistent-volumes.md
2 parents 2fa885c + 212efeb commit 03ae214

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

content/zh-cn/docs/concepts/storage/persistent-volumes.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ The access modes are:
11141114

11151115
`ReadWriteOnce`
11161116
: the volume can be mounted as read-write by a single node. ReadWriteOnce access
1117-
mode still can allow multiple pods to access the volume when the pods are
1117+
mode still can allow multiple pods to access (read from or write to) that volume when the pods are
11181118
running on the same node. For single pod access, please see ReadWriteOncePod.
11191119

11201120
`ReadOnlyMany`
@@ -1133,7 +1133,7 @@ The access modes are:
11331133

11341134
`ReadWriteOnce`
11351135
: 卷可以被一个节点以读写方式挂载。
1136-
ReadWriteOnce 访问模式仍然可以在同一节点上运行的多个 Pod 访问该卷
1136+
ReadWriteOnce 访问模式仍然可以在同一节点上运行的多个 Pod 访问(读取或写入)该卷
11371137
对于单个 Pod 的访问,请参考 ReadWriteOncePod 访问模式。
11381138

11391139
`ReadOnlyMany`
@@ -1475,6 +1475,23 @@ consumption of the volume as either a filesystem or block device.
14751475
申领使用[与卷相同的约定](#volume-mode)来表明是将卷作为文件系统还是块设备来使用。
14761476

14771477
<!--
1478+
### Volume Name
1479+
1480+
Claims can use the `volumeName` field to explicitly bind to a specific PersistentVolume. You can also leave
1481+
`volumeName` unset, indicating that you'd like Kubernetes to set up a new PersistentVolume
1482+
that matches the claim.
1483+
If the specified PV is already bound to another PVC, the binding will be stuck
1484+
in a pending state.
1485+
-->
1486+
1487+
### 卷名称 {#volume-name}
1488+
1489+
申领可以使用 `volumeName` 字段显式绑定到特定的 PersistentVolume。
1490+
你也可以不设置 `volumeName` 字段,这表示你希望 Kubernetes 设置一个与申领匹配的新 PersistentVolume。
1491+
如果指定的 PV 已经绑定到另一个 PVC,则绑定操作将卡在 Pending 状态。
1492+
1493+
<!--
1494+
14781495
### Resources
14791496

14801497
Claims, like Pods, can request specific quantities of a resource. In this case,

0 commit comments

Comments
 (0)