Kubernetes in Sameer words!!!

DevOps

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

What is Kubernetes?
Open source Container-orchestration engine from Google

Why Kubernetes?

way to manage microservices
way to manage multi-node containers

How Kubernetes works?

Control plane
api-server (Collection of k8s APIs)
kube-controller-manager
node-controller
few other controllers as well
scheduler (Allocated container to nodes)
etcd (KV pair) (Brain of cluster)
Worker Nodes
kubelet (Manages node)
kube-proxy (Runs on each worker node. Enables n/w communication b/w nodes)
docker/rkt (Container runtime)
Others
DNS

What is pod?

Lowest (Atomic) unit of k8s
Can contain one or more containers
Lives as long as there is at least one container running