Member-only story
Learn Kubernetes step by step using LKE
Want to learn Kubernetes? then you are at the right place!
Introduction
Kubernetes or K8S is a container orchestration solution. More precisely, it is an orchestration software that allows YAML scripts, to deploy an application, scale it automatically, and have several deployment possibilities in different environments.
On the web, we often find Kubernetes under the acronym K8S.
Why Kubernetes?
In the cloud world, DevOps is increasingly used to automate application deployments.
The primary goal of Kubernetes is to be able to deploy a complete application infrastructure in a few clicks.
In addition, Kubernetes allows you to manage the scaling of this infrastructure and therefore, optimize the rendering for the user when visiting the application.
What’s behind Kubernetes?
It is important to know that Kubernetes is a Production-Grade Container Orchestration and not a software allowing the launching of containers! In other words, without a Container Runtime, Kubernetes is useless!
In this article, I’m going to assume that you are familiar with containerization. If you are not, I invite you to start by reading my…