Kubernetes Basic Concepts Note
June 25, 2021
Architecture # Nodes # In Kubernetes nodes are the physical or virtual machines where workloads runs. Each nodes are managed by control plane and contains the services necessary to run Pods. Master Node # The master node’s role is the command and control for all the other worker nodes. There are many containers running on the master node, the primary of which is the kube-apiserver , which is responsible for validating the configure data for the API objects such as pods, services and others. ...