Join leading companies like CarMax, Discount Tire, and Yamaha who are using Leverege to transform their real-world operations.
We’ve successfully received your information and we’ll get in touch with you soon :)
Chapter
2
Kubernetes Concepts
As mentioned previously, Kubernetes can largely be divided into Master and Node Components. There are also some add-ons such as the Web UI and DNS that are provided as a service by managed Kubernetes offerings (e.g. GKE, AKS, EKS).
Master components globally monitor the cluster and respond to cluster events. These can include scheduling, scaling, or restarting an unhealthy pod. Five components make up the Master components: kube-apiserver, etcd, kube-scheduler, kube-controller-manager, and cloud-controller-manager.
Unlike Master components that usually run on a single node (unless High Availability Setup is explicitly stated), Node components run on every node.