Source: medium.com

Introduction to Kubernetes

Category: Kubernetes, Docker, containerization, automation

In my last month’s blog, I talked about Docker thatis a platform or ecosystem around creating and running containers. This month’s blog intends to talk about the Kubernetes whichis an open-source container orchestration system for automating application deployment, scaling, and management. Let us understand the problems that Kubernetes solves while working with containers so we understand the value it brings in.

It is challenging to manage communications between services and at the same time ensure high availability of the systems to ensure end-user experience is not impacted in any manner.

The Basic Kubernetes Objects are as follows: You can check Kubernetes docs to know about other objects as and when you need to use them.

Related Articles