In simple terms, Kubernetes (or K8s) is an open-source tool used to manage your containers. Let’s learn more about what it is and what it can do.
If you’re involved with containers, you’ve likely come across Kubernetes, often referred to as K8s. In basic terms, Kubernetes is an open-source platform for managing your containers. Let’s explore more about what it offers and its capabilities.
Containers are an excellent solution for creating portable applications, but when managing numerous containers in a complicated infrastructure, you might require additional tools to oversee everything. Kubernetes stands out as the premier container management solution available today. A survey conducted by the Cloud Native Computing Foundation revealed that 83% of participants utilize it in a production environment.

What does Kubernetes do?
According to Kubernetes.io, Kubernetes is “an open-source system for automating deployment, scaling, and management of containerized applications.” So if you’re running applications in containers, Kubernetes is a tool designed to make your life a lot easier. And the bigger and more complex your applications become, the more useful Kubernetes is.
So, you have a bunch of compute resources, maybe servers or cloud resources. You want to start deploying containers, but as the application grows it will become difficult to manage manually. Think of it like making a meal in your kitchen. If you do it yourself, you have to think about every detail, like how and when to combine the ingredients, how long to cook it, and cleaning up afterward. But if you go to a restaurant, you simply ask for what you want and the restaurant handles all the details.
Managing containers with Kubernetes is a bit like going to a restaurant. Instead of asking yourself, “Which server should I run this container on?” or “Which server has the most resources available right now?” you just tell Kubernetes you want to run a container, and it handles everything else.
What is a Kubernetes cluster?

Kubernetes handles all of this using a concept called a Kubernetes cluster. A Kubernetes cluster is a collection of available compute resources. Kubernetes is aware of all of the resources in the cluster, and when you want to run a container, it automatically assigns resources for that container and handles the process of running and managing the container using those resources.
A Kubernetes cluster has control plane and worker nodes. Control plane nodes serve to control and manage the cluster itself. Worker nodes run your actual application containers. When I want to run a container with Kubernetes, I simply tell a control plane node, “Hey, I want to run a container!” Kubernetes then assigns that container to a node and runs it. This collection of control plane and worker nodes makes up the cluster.
What else does Kubernetes do?
Those are just the basics when it comes to Kubernetes functionality. Kubernetes includes a lot of different features to help you solve a variety of challenges, including:
- Networking that allows your containers to talk to each other
- Configuration management that enables you to pass configurations to your containerized apps
- Deployment capabilities for rolling out new versions of your code
- Scaling that allows you to assign more or fewer resources to your application
And it can do a lot more than that.
I hope that gives you an idea of what Kubernetes is all about. If you want to get your hands on a Kubernetes environment, check out Minikube. It can help you get Kubernetes running on your local machine quickly and easily.
I don’t normally comment but I gotta admit thankyou for the post on this special one : D.