From d4f60587d02adeb80419f4008d3173d51ecd72f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=B0=E6=96=87?= Date: Thu, 27 Aug 2020 09:53:02 +0800 Subject: [PATCH] Update links to k8s control plane and k8s objects on controller page (#23416) * add html id #control-plane-components * Update links to k8s control plane and k8s objects on controller page Fix links * Fixe typo * Update kubernetes-objects.md * Remove excess Spaces --- content/zh/docs/concepts/architecture/controller.md | 8 ++++---- content/zh/docs/concepts/overview/components.md | 2 +- .../overview/working-with-objects/kubernetes-objects.md | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/content/zh/docs/concepts/architecture/controller.md b/content/zh/docs/concepts/architecture/controller.md index f7d86e3fec778..dba00e90188cb 100644 --- a/content/zh/docs/concepts/architecture/controller.md +++ b/content/zh/docs/concepts/architecture/controller.md @@ -251,13 +251,13 @@ Kubernetes 允许你运行一个稳定的控制平面,这样即使某些内置 ## {{% heading "whatsnext" %}} -* 阅读 [Kubernetes 控制面](/zh/docs/concepts/#kubernetes-control-plane) -* 了解 [Kubernetes 对象](/zh/docs/concepts/#kubernetes-objects) 的一些基本知识 +* 阅读 [Kubernetes 控制平面组件](/zh/docs/concepts/overview/components/#control-plane-components) +* 了解 [Kubernetes 对象](/zh/docs/concepts/overview/working-with-objects/kubernetes-objects/) 的一些基本知识 * 进一步学习 [Kubernetes API](/zh/docs/concepts/overview/kubernetes-api/) * 如果你想编写自己的控制器,请看 Kubernetes 的[扩展模式](/zh/docs/concepts/extend-kubernetes/extend-cluster/#extension-patterns)。 diff --git a/content/zh/docs/concepts/overview/components.md b/content/zh/docs/concepts/overview/components.md index ebf3b2b4bfce8..7f9ef72b726cf 100644 --- a/content/zh/docs/concepts/overview/components.md +++ b/content/zh/docs/concepts/overview/components.md @@ -50,7 +50,7 @@ Here's the diagram of a Kubernetes cluster with all the components tied together The Control Plane's components make global decisions about the cluster (for example, scheduling), as well as detecting and responding to cluster events (for example, starting up a new {{< glossary_tooltip text="pod" term_id="pod">}} when a deployment's `replicas` field is unsatisfied). --> -## 控制平面组件(Control Plane Components) +## 控制平面组件(Control Plane Components) {#control-plane-components} 控制平面的组件对集群做出全局决策(比如调度),以及检测和响应集群事件(例如,当不满足部署的 `replicas` 字段时,启动新的 {{< glossary_tooltip text="pod" term_id="pod">}})。 diff --git a/content/zh/docs/concepts/overview/working-with-objects/kubernetes-objects.md b/content/zh/docs/concepts/overview/working-with-objects/kubernetes-objects.md index fe47dad14c3e4..f5843e2573527 100644 --- a/content/zh/docs/concepts/overview/working-with-objects/kubernetes-objects.md +++ b/content/zh/docs/concepts/overview/working-with-objects/kubernetes-objects.md @@ -82,7 +82,7 @@ supplied. --> `status` 描述了对象的 _当前状态(Current State)_,它是由 Kubernetes 系统和组件 设置并更新的。在任何时刻,Kubernetes -{{< glossary_tooltip text="控制面" term_id="control-plane" >}} +{{< glossary_tooltip text="控制平面" term_id="control-plane" >}} 都一直积极地管理着对象的实际状态,以使之与期望状态相匹配。 -* [Kubernetes API 概述](/zh/docs/reference/using-api/api-overview/) 提供关于 API 概念的进一步阐述 +* [Kubernetes API 总览](/zh/docs/reference/using-api/api-overview/) 提供关于 API 概念的进一步阐述 * 了解最重要的 Kubernetes 基本对象,例如 [Pod](/zh/docs/concepts/workloads/pods/) * 了解 Kubernetes 中的[控制器](/zh/docs/concepts/architecture/controller/)