From 2ffe8d84d05b19972c25e435d2251f3bfc988d4b Mon Sep 17 00:00:00 2001 From: Dominic Yin Date: Sat, 2 May 2020 19:02:18 +0800 Subject: [PATCH] Update content/zh/docs/concepts/storage/volume-pvc-datasource.md --- content/zh/docs/concepts/storage/volume-pvc-datasource.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/zh/docs/concepts/storage/volume-pvc-datasource.md b/content/zh/docs/concepts/storage/volume-pvc-datasource.md index a8e1a51175..8ae41e5149 100644 --- a/content/zh/docs/concepts/storage/volume-pvc-datasource.md +++ b/content/zh/docs/concepts/storage/volume-pvc-datasource.md @@ -19,7 +19,6 @@ weight: 30 {{% capture overview %}} -{{< feature-state for_k8s_version="v1.16" state="beta" >}} @@ -50,10 +49,10 @@ A Clone is defined as a duplicate of an existing Kubernetes Volume that can be c 克隆,意思是为已有的 Kubernetes 卷创建副本,它可以像任何其它标准卷一样被使用。唯一的区别就是配置后,后端设备将创建指定完全相同的副本,而不是创建一个“新的”空卷。 -从 Kubernetes API 的角度看,克隆的实现只是在创建新的 PVC 时,增加了指定一个现有未绑定 PVC 作为数据源的能力。 +从 Kubernetes API 的角度看,克隆的实现只是在创建新的 PVC 时,增加了指定一个现有 PVC 作为数据源的能力。源 PVC 必须是 bound 状态且可用的(不在使用中)。 * 克隆支持(`VolumePVCDataSource`)仅适用于 CSI 驱动。 @@ -78,6 +78,7 @@ Users need to be aware of the following when using this feature: * 仅在同一存储类中支持克隆。 - 目标卷必须和源卷具有相同的存储类 - 可以使用默认的存储类并且 storageClassName 字段在规格中忽略了 +* 克隆只能在两个使用相同 VolumeMode 设置的卷中进行(如果请求克隆一个块存储模式的卷,源卷必须也是块存储模式)。