[Kubernetes][Basic] 1. Kubernetes Clusters - eeeemune/Infra-Notes GitHub Wiki
💚 Objectives
-
Learn what a Kubernetes
clusteris. -
Learn what
Minikubeis. -
Start a Kubernetes cluster on our computer.
💚 Control Plane

-
Each cluster has its
control plane. -
Control Planes manage the cluster and the nodes that are used to host the running applications.
💚 Kubelet
-
Each node has a
kubelet- A node is a VM or a physical computer
-
Kubelet** manages the node and communicate with the kubernetes**
💛 Node-level Component

-
Kubeletis Node-level Component -
It communicates with the control plane using the Kubernetes API
-
A control plane exposes Kubernetes API
-
And each
kubeletuses these APIs to communicate its with control plane -
We can interact with other clusters by Kubernetes API, through control plane
-