Kubernetes Control Plane Controller Manager and Controllers
Categories:
less than a minute
INFO
The goal of the controllers is to ensure the observed state of the cluster matches the desired state.The Kubernetes Controller Manager is a daemon that runs the core control loops, or controllers, included in the Kubernetes system. It’s a key part of the Kubernetes control plane.
These controllers include the Node Controller, Replication Controller, Endpoints Controller, and others. They each continuously compare the actual state of the cluster with the desired state expressed by users and make changes as necessary to converge the two.
The Kubernetes Controller Manager packages these individual controllers into a single binary and runs them in a single process to simplify management of the control plane. However, they could technically be run separately. In larger or more complex deployments, it’s even possible to run multiple controller managers for better scalability and performance.
The Controller Manager communicates with other components of the Kubernetes control plane, particularly the API server, to stay informed about the state of the cluster and make changes as necessary. It’s one of the main reasons Kubernetes can offer such strong automation and self-healing capabilities.