Skip to content

Commit 2ffe8d8

Browse files
committed
Update content/zh/docs/concepts/storage/volume-pvc-datasource.md
1 parent 652e361 commit 2ffe8d8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

content/zh/docs/concepts/storage/volume-pvc-datasource.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ weight: 30
1919

2020
{{% capture overview %}}
2121

22-
{{< feature-state for_k8s_version="v1.16" state="beta" >}}
2322
<!--
2423
This document describes the concept of cloning existing CSI Volumes in Kubernetes. Familiarity with [Volumes](/docs/concepts/storage/volumes) is suggested.
2524
-->
@@ -50,10 +49,10 @@ A Clone is defined as a duplicate of an existing Kubernetes Volume that can be c
5049
克隆,意思是为已有的 Kubernetes 卷创建副本,它可以像任何其它标准卷一样被使用。唯一的区别就是配置后,后端设备将创建指定完全相同的副本,而不是创建一个“新的”空卷。
5150

5251
<!--
53-
The implementation of cloning, from the perspective of the Kubernetes API simply adds the ability to specify an existing unbound PVC as a dataSource during new pvc creation.
52+
The implementation of cloning, from the perspective of the Kubernetes API, simply adds the ability to specify an existing PVC as a dataSource during new PVC creation. The source PVC must be bound and available (not in use).
5453
-->
5554

56-
从 Kubernetes API 的角度看,克隆的实现只是在创建新的 PVC 时,增加了指定一个现有未绑定 PVC 作为数据源的能力。
55+
从 Kubernetes API 的角度看,克隆的实现只是在创建新的 PVC 时,增加了指定一个现有 PVC 作为数据源的能力。源 PVC 必须是 bound 状态且可用的(不在使用中)
5756

5857
<!--
5958
Users need to be aware of the following when using this feature:
@@ -69,6 +68,7 @@ Users need to be aware of the following when using this feature:
6968
* Cloning is only supported within the same Storage Class.
7069
- Destination volume must be the same storage class as the source
7170
- Default storage class can be used and storageClassName omitted in the spec
71+
* Cloning can only be performed between two volumes that use the same VolumeMode setting (if you request a block mode volume, the source MUST also be block mode)
7272
-->
7373

7474
* 克隆支持(`VolumePVCDataSource`)仅适用于 CSI 驱动。
@@ -78,6 +78,7 @@ Users need to be aware of the following when using this feature:
7878
* 仅在同一存储类中支持克隆。
7979
- 目标卷必须和源卷具有相同的存储类
8080
- 可以使用默认的存储类并且 storageClassName 字段在规格中忽略了
81+
* 克隆只能在两个使用相同 VolumeMode 设置的卷中进行(如果请求克隆一个块存储模式的卷,源卷必须也是块存储模式)。
8182

8283

8384
<!--

0 commit comments

Comments
 (0)