Debug School

varunakg
varunakg

Posted on

Q1. What is Kubernetes?

1-Kubernetes is a system that manages containers where a container could be explained as a lightweight virtual machine.
2-To build an application you need to build a bunch of containers and then use Kubernetes to manage those containers.
3-This sounds like something very difficult and time-consuming, but the advantage is that Kubernetes can create and scale containers automatically and manage storage among all the containers.
4-Kubernetes does load balancing when there is too much traffic.
5-Kubernetes helps you do some storage stuff with a disc.
6-Kubernetes eliminates many of the manual processes involved in deploying and scaling containerized applications and standardizes them.
7-Kubernetes orchestration allows you to build application services that span multiple containers, schedule containers across a cluster, scale those containers, and manage their health over time.
8-Kubernetes High-Availability is another benefit because if something fails, it will replace it and restart over.

Top comments (0)