HomeDockerKubernetes Concepts Explained in 9 minutes!

Kubernetes Concepts Explained in 9 minutes!

We will now get a brief introduction to basic Kubernetes concepts.

Access the full course: https://kodekloud.com/p/kubernetes-beginner-to-expert

With docker you were able to run a single instance of an application using the docker run command. Which is worthy! Running an application has never been so easy before.

With Kubernetes, using the Kubernetes CLI known as Kubectl you can run a 1000 instance of the same application with a single command. Kubernetes can scale it up to 2000 with another command.  

Kubernetes can even be configured to do these routinely so that instances and the infrastructure itself can scale up and down based on user load. 

Kubernetes can upgrade these 2000 instances of application in a rolling fashion 1 at a time, with a single command. If something goes inaccurate, it can help you roll back these images with a single command.

Kubernetes can help you test new features of your application by only upgrading a proportion of these instances through A/B testing methods.

The Kubernetes open architecture provides support for many many different community and storage distributors. Any community or storage brand you can think of has a plugin for kubernetes. 

Kubernetes helps a variety of authentication and authorization mechanisms.

All major cloud service providers have native support for Kubernetes. 

So what’s the relation between Docker and Kubernetes. Kubernetes uses Docker hosts to host applications in the form of Docker containers. Well it need not be Docker all the time, Kubernetes helps alternatives to Docker as well, such as Rocket or Crio.

When you install Kubernetes on a System, you are actually installing the following components. An API Server. An ETCD service. A kubelet service. A Container Runtime, Controllers and Schedulers.

kubelet is the agent that runs on each node in the cluster. The agent is responsible for making sure that the containers are operating on the nodes as anticipated.

We have a 3 course series at KodeKloud that will take you from an absolute beginner in Kubernetes to a Certified Expert.

1. Kubernetes for the Absolute Beginners
2. Certified Kubernetes Administrator (CKA)
3. Certified Kubernetes Application Developer (CKAD)

Access the full courses at: www.kodekloud.com

Or view this on Youtube

Most Popular

StackJourney