Debug School

Ankita Goyal
Ankita Goyal

Posted on

My Kubernetes Notes...

What is Kubernetes?
It is an open source orchestration solution for containers which helps in scaling and load balancing of docker containers.

Why do we need it?
To handle the scalability issue of containers.

How it works?
It works on the Master/Worker node architecture. It has a virtual entity called pods which contains various containers .

What are the components of Master?

  1. API Server
  2. Controller-Manager
  3. Scheduler
  4. etcd database

What are the components of Worker?

  1. Kubelet
  2. Kube-proxy

Top comments (0)