I see this in Kubernetes doc,
In Kubernetes, controllers are control loops that watch the state of your cluster, then make or request changes where needed. Each controller tries to move the current cluster state closer to the desired state.
Also this,
The Deployment controller and Job controller are examples of controllers that come as part of Kubernetes itself ("built-in" controllers).
But, I couldn't find how does the control loop work. Does it check the current state of the cluster every few seconds? If yes, what is the default value?
I also found something interesting here,
What is the deployment controller sync period for kube-controller-manager?
I would like to start explaining that the kube-controller-manager is a collection of individual control processes tied together to reduce complexity.
Being said that, the control process responsible for monitoring the node's health and a few other parameters is the Node Controller, and it does that by reading the Heartbeats sent by the Kubelet agent in the nodes.
According to the Kubernete's documentation:
As for the Kubernetes Objects running in the nodes:
Depending on the Kubernetes Object, the controller mechanism is responsible for maintaining its desired state. The Deployment Object for example, uses the Replica Set underneath to maintain the desired described state of the Pods; while the Statefulset Object uses its own Controller for the same purpose.
To see a complete list of Kubernetes Objects managed by your cluster, you can run the command:
kubectl api-resources