K8s – Pods

Though K8s enables us to deploy our applications as containers on a set of machines configured as workers/minions in a cluster, however it does’nt deploy the containers directly on the nodes…. but on Pods A Pod is not a process, but an environment for running container(s). The containers are encapsulated into a k8s object called […]

What is Kubernetes?

Kubernetes, aka k8s, is an open-source Container Orchestration system for automating deployment, scaling and management of containerized applications & microservices. In simple words, one can cluster together groups of hosts running containers into logical units, and Kubernetes helps in easily & efficiently manage such clusters Table of Contents Introduction Cluster Architecture Control Plane Components Kube-API […]