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
This commit is contained in:
杰文
2020-08-27 09:53:02 +08:00
committed by GitHub
parent c4063623ac
commit d4f60587d0
3 changed files with 7 additions and 7 deletions
@@ -251,13 +251,13 @@ Kubernetes 允许你运行一个稳定的控制平面,这样即使某些内置
## {{% heading "whatsnext" %}}
<!--
* Read about the [Kubernetes control plane](/docs/concepts/#kubernetes-control-plane)
* Discover some of the basic [Kubernetes objects](/docs/concepts/#kubernetes-objects)
* Read about the [Kubernetes control plane](/docs/concepts/overview/components/#control-plane-components)
* Discover some of the basic [Kubernetes objects](/docs/concepts/overview/working-with-objects/kubernetes-objects/)
* Learn more about the [Kubernetes API](/docs/concepts/overview/kubernetes-api/)
* If you want to write your own controller, see [Extension Patterns](/docs/concepts/extend-kubernetes/extend-cluster/#extension-patterns) in Extending Kubernetes.
-->
* 阅读 [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)。
@@ -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">}})。
@@ -82,7 +82,7 @@ supplied.
-->
`status` 描述了对象的 _当前状态(Current State_,它是由 Kubernetes 系统和组件
设置并更新的。在任何时刻,Kubernetes
{{< glossary_tooltip text="控制面" term_id="control-plane" >}}
{{< glossary_tooltip text="控制面" term_id="control-plane" >}}
都一直积极地管理着对象的实际状态,以使之与期望状态相匹配。
<!--
@@ -195,7 +195,7 @@ and the `spec` format for a `Deployment` can be found
* Learn about the most important basic Kubernetes objects, such as [Pod](/docs/concepts/workloads/pods/pod-overview/).
* Learn about [controllers](/docs/concepts/architecture/controller/) in Kubernetes
-->
* [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/)