
Learn Kubernetes Architecture : In different way
Welcome to my vlog , I am continuing my DevOps journey and this is my first vlog . The only prerequisites before you moving forward in this vlog is basic knowledge of Docker. And do not worry if you do not know about Kubernetes architecture before I am very sure that you will understand everything. Today we are going to learn about the Architecture of Kubernetes(K8S). Kubernetes is mainly split into two major parts: 1. The control plane (Master or the Manager of Kubernetes or you can assume it as brain of Kubernetes) 2. Data Plane (Worker Nodes or who is actually building the application) Now lets talk about the Workers or Data plane first. Data plan includes mainly 3 components: 1.Kubelet: - Responsibility: it acts like a captain of the worker node. It ensures that pods are running and healthy. - Auto healing node: If a pod stops running , the Cubelet informs the control plain(the brain) to take necessary action(like restarting or recreating it). 2. Kube Proxy (Q Proxy): - Responsibil
Continue reading on Dev.to
Opens in a new tab

