...

/

Components of Manager and Worker Nodes

Components of Manager and Worker Nodes

Let’s learn about the components of manager and worker nodes in Kubernetes’ architecture and explore the concurrency control mechanism in Kubernetes.

Components of the manager node

The main components of the manager node are the API Server (kube-apiserver), the Scheduler (kube-scheduler), and the Controller Manager (kube-controller-manager).

The API Server (kube-apiserver)

The API Server is the front-end of the Kubernetes cluster, allowing users to inspect the resources of the cluster and modify them or create new ones.

The Scheduler (kube-scheduler)

The Scheduler detects newly created pods that have no nodes assigned and selects a node for them to run.

Note that this ...