in Kubernetes K8s by
What are the main components of the master node?

1 Answer

0 votes
by

The main components of the master node that help to manage worker nodes are as follows:

  1. Kube-server: It acts as a front end of the cluster and communicates with the cluster through the API server.
  2. Kube controller: It implements governance across the cluster and runs the set of controllers for the running cluster.
  3. Kube scheduler: It schedules the activities of the nodes and holds the node resource to determine the proper action for triggering events.
...