You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/concepts/architecture/controller.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,9 +113,9 @@ useful changes, it doesn't matter if the overall state is or is not stable.
113
113
As a tenet of its design, Kubernetes uses lots of controllers that each manage
114
114
a particular aspect of cluster state. Most commonly, a particular control loop
115
115
(controller) uses one kind of resource as its desired state, and has a different
116
-
kind of resource that it manages to make that desired state happen. For example,
116
+
kind of resource that it manages to make that desired state happen. For example,
117
117
a controller for Jobs tracks Job objects (to discover new work) and Pod objects
118
-
(to run the Jobs, and then to see when the work is finished). In this case
118
+
(to run the Jobs, and then to see when the work is finished). In this case
119
119
something else creates the Jobs, whereas the Job controller creates Pods.
120
120
121
121
It's useful to have simple controllers rather than one, monolithic set of control
@@ -154,8 +154,7 @@ controller does.
154
154
155
155
## {{% heading "whatsnext" %}}
156
156
157
-
* Read about the [Kubernetes control plane](/docs/concepts/overview/components/)
158
-
* Discover some of the basic [Kubernetes objects](/docs/concepts/overview/working-with-objects)
157
+
* Read about the [Kubernetes control plane](/docs/concepts/overview/components/#control-plane-components)
158
+
* Discover some of the basic [Kubernetes objects](/docs/concepts/overview/working-with-objects/kubernetes-objects/)
159
159
* Learn more about the [Kubernetes API](/docs/concepts/overview/kubernetes-api/)
160
160
* If you want to write your own controller, see [Extension Patterns](/docs/concepts/extend-kubernetes/extend-cluster/#extension-patterns) in Extending Kubernetes.
0 commit comments