add zh pages

This commit is contained in:
Karen Bradshaw
2020-06-01 09:23:39 -04:00
parent 21fd0a12f9
commit 4b35d4d401
303 changed files with 2764 additions and 2439 deletions
@@ -1,6 +1,6 @@
---
title: 动态卷供应
content_template: templates/concept
content_type: concept
weight: 40
---
<!--
@@ -11,12 +11,12 @@ reviewers:
- thockin
- msau42
title: Dynamic Volume Provisioning
content_template: templates/concept
content_type: concept
weight: 40
---
-->
{{% capture overview %}}
<!-- overview -->
<!--
Dynamic volume provisioning allows storage volumes to be created on-demand.
@@ -32,9 +32,9 @@ automatically provisions storage when it is requested by users.
然后在 Kubernetes 集群创建 [`PersistentVolume` 对象](/docs/concepts/storage/persistent-volumes/)来表示这些卷。
动态供应功能消除了集群管理员预先配置存储的需要。 相反,它在用户请求时自动供应存储。
{{% /capture %}}
{{% capture body %}}
<!-- body -->
<!--
## Background
@@ -212,4 +212,4 @@ Mode](/docs/concepts/storage/storage-classes/#volume-binding-mode).
单区域存储后端应该被供应到 Pod 被调度到的区域。
这可以通过设置[卷绑定模式](/docs/concepts/storage/storage-classes/#volume-binding-mode)来实现。
{{% /capture %}}
@@ -5,11 +5,11 @@ reviewers:
- thockin
- msau42
title: Storage Classes
content_template: templates/concept
content_type: concept
weight: 30
---
{{% capture overview %}}
<!-- overview -->
<!--
This document describes the concept of a StorageClass in Kubernetes. Familiarity
@@ -19,9 +19,9 @@ with [volumes](/docs/concepts/storage/volumes/) and
本文描述了 Kubernetes 中 StorageClass 的概念。建议先熟悉 [](/docs/concepts/storage/volumes/) 和
[持久卷](/docs/concepts/storage/persistent-volumes) 的概念。
{{% /capture %}}
{{% capture body %}}
<!-- body -->
<!--
## Introduction
@@ -1246,4 +1246,4 @@ PersistentVolumeClaim.
-->
延迟卷绑定使得调度器在为 PersistentVolumeClaim 选择一个合适的 PersistentVolume 时能考虑到所有 pod 的调度限制。
{{% /capture %}}
@@ -1,6 +1,6 @@
---
title: 特定于节点的卷数限制
content_template: templates/concept
content_type: concept
---
<!-- ---
@@ -10,11 +10,11 @@ reviewers:
- thockin
- msau42
title: Node-specific Volume Limits
content_template: templates/concept
content_type: concept
---
-->
{{% capture overview %}}
<!-- overview -->
<!-- This page describes the maximum number of volumes that can be attached
to a Node for various cloud providers. -->
@@ -30,9 +30,9 @@ Kubernetes 需要尊重这些限制。 否则,在节点上调度的 Pod 可能
{{% /capture %}}
{{% capture body %}}
<!-- body -->
<!--
## Kubernetes default limits
@@ -150,4 +150,4 @@ Kubernetes 允许 39 个卷关联至节点。
* 对于由已迁移到 CSI 驱动程序的树内插件管理的卷,最大卷数将是 CSI 驱动程序报告的卷数。
{{% /capture %}}
@@ -1,6 +1,6 @@
---
title: CSI 卷克隆
content_template: templates/concept
content_type: concept
weight: 30
---
@@ -12,12 +12,12 @@ reviewers:
- thockin
- msau42
title: CSI Volume Cloning
content_template: templates/concept
content_type: concept
weight: 30
---
-->
{{% capture overview %}}
<!-- overview -->
<!--
This document describes the concept of cloning existing CSI Volumes in Kubernetes. Familiarity with [Volumes](/docs/concepts/storage/volumes) is suggested.
@@ -25,10 +25,10 @@ This document describes the concept of cloning existing CSI Volumes in Kubernete
本文档介绍 Kubernetes 中克隆现有 CSI 卷的概念。阅读前建议先熟悉[](/docs/concepts/storage/volumes)。
{{% /capture %}}
{{% capture body %}}
<!-- body -->
<!--
## Introduction
@@ -137,4 +137,4 @@ Upon availability of the new PVC, the cloned PVC is consumed the same as other P
一旦新的 PVC 可用,被克隆的 PVC 项其他 PVC 一样被使用。可以预期的是,新创建的 PVC 是一个独立的对象。可以独立使用,克隆,快照或删除它,而不需要考虑它的原始数据源 PVC。这也意味着,源没有以任何方式链接到新创建的 PVC,它也可以被修改或删除,而不会影响到新创建的克隆。
{{% /capture %}}
@@ -1,10 +1,10 @@
---
title: 卷快照类
content_template: templates/concept
content_type: concept
weight: 30
---
{{% capture overview %}}
<!-- overview -->
<!--
This document describes the concept of `VolumeSnapshotClass` in Kubernetes. Familiarity
@@ -13,10 +13,10 @@ with [volume snapshots](/docs/concepts/storage/volume-snapshots/) and
-->
本文档描述了 Kubernetes 中 `VolumeSnapshotClass` 的概念。 建议熟悉[卷快照(Volume Snapshots](/docs/concepts/storage/volume-snapshots/)和[存储类(Storage Class](/docs/concepts/storage/storage-classes)。
{{% /capture %}}
{{% capture body %}}
<!-- body -->
<!--
## Introduction
@@ -97,4 +97,4 @@ the volume snapshot class. Different parameters may be accepted depending on the
卷快照类具有描述属于该卷快照类的卷快照的参数。 可根据 `driver` 接受不同的参数。
{{% /capture %}}
@@ -1,6 +1,6 @@
---
title: 卷快照
content_template: templates/concept
content_type: concept
weight: 20
---
@@ -14,12 +14,12 @@ reviewers:
- xing-yang
- yuxiangqian
title: Volume Snapshots
content_template: templates/concept
content_type: concept
weight: 20
---
-->
{{% capture overview %}}
<!-- overview -->
{{< feature-state for_k8s_version="1.17" state="beta" >}}
@@ -28,9 +28,9 @@ In Kubernetes, a _VolumeSnapshot_ represents a snapshot of a volume on a storage
-->
在 Kubernetes 中,卷快照是一个存储系统上卷的快照,本文假设你已经熟悉了 Kubernetes 的 [持久卷](/docs/concepts/storage/persistent-volumes/)。
{{% /capture %}}
{{% capture body %}}
<!-- body -->
<!--
## Introduction
@@ -268,4 +268,4 @@ For more details, see
-->
更多详细信息,请参阅 [卷快照和从快照还原卷](/docs/concepts/storage/persistent-volumes/#volume-snapshot-and-restore-volume-from-snapshot-support)。
{{% /capture %}}
+8 -7
View File
@@ -5,11 +5,11 @@ reviewers:
- thockin
- msau42
title: Volumes
content_template: templates/concept
content_type: concept
weight: 10
---
{{% capture overview %}}
<!-- overview -->
<!--
On-disk files in a Container are ephemeral, which presents some problems for
@@ -31,10 +31,10 @@ Familiarity with [Pods](/docs/user-guide/pods) is suggested.
阅读本文前建议您熟悉一下 [Pods](/docs/user-guide/pods)。
{{% /capture %}}
{{% capture body %}}
<!-- body -->
<!--
## Background
@@ -2401,9 +2401,10 @@ sudo systemctl daemon-reload
sudo systemctl restart docker
```
{{% /capture %}}
{{% capture whatsnext %}}
## {{% heading "whatsnext" %}}
<!--
* Follow an example of [deploying WordPress and MySQL with Persistent Volumes](/docs/tutorials/stateful-application/mysql-wordpress-persistent-volume/).
@@ -2411,4 +2412,4 @@ sudo systemctl restart docker
* 参考[使用持久卷部署 WordPress 和 MySQL](/zh/docs/tutorials/stateful-application/mysql-wordpress-persistent-volume/) 示例。
{{% /capture %}}