Containers is about as hot as it can get in the IT world right now.
But containers need management & kubernetes is one of the hottest container management technologies out there. And it has got a future as bright as a million suns put together.
Not to brag or anything, but in case you didn’t know, i’m a containerholic, who lives & breathes container. So come let’s get cracking and see WTF in kubernetes
Sorry to be perceptive, but from this point on, I’m assuming you know what a container (aka glorified process) is and how they work. If you don’t, I’ll churn a blog for that soon. Until then please bear with me and do some self reading.
So buckle up, the world is gonna be your oyster & you can be the batman/batwoman of the tech world.
Kubernetes Primer - Where, What & Why
Let’s start with the DNA of kubernetes (fondly called k8s for the slouches).
Where did it come from and what's in the name?
What does it do & why do we have it?
The Where?
Giving a celluloid ring to it,
Kubernetes was spawned from the bowels of Google, raising from the most hyper scale data centers of the world, who were doing containers even before containers became a market norm. It however came off age in 2014 when it was handed over to the Cloud Native Computing Foundation
Google relied on proprietary solutions such as Brog & Omega for container management. Kubernetes is an organic evolutions of these technologies.
What's in the name?
Kubernetes comes from the greek word called “helmsman”, which denotes the person who steers the ship.
Spoilers Alert!!!
Containers are derived from the shipping industry so you see why they call kubernetes as the one who steers the ship. This is no surprise since the docker & container world is littered with nautical references. Btw, kubernetes was apparently initially called the Seven of Nine, which (if you are not Star Trek ignorant) is the name of the female Borg. So you see where this is going right?
And Kubernetes is often called K8S, with the number 8 replacing the eight characters (surprise) between the K and the S; brilliant for lazy typers.
What and Why?
-
Madness of Scale
Containers make our old challenges with scale pretty laughable. However, if a legacy app had hundreds of VMs, there are chances that the modernized VMs would have thousands of containers (and I’m not even starting microservices here). And if you wish to manage this madness, say hello to Kubernetes. -
Pet vs Cattle
Gone are the days where we named our servers. In the brave new k8s world, all we need to say is - “Hi K8s, here I have an app, run it for me please.”.
We do not care where it runs. The servers today are faceless character less workers -
Platform Agnostic
Its cool with baremetal, VMs, openstack, anything.
K8S let’s you focus on deployments
Kubernetes Architecture
Big Picture View
Let’s begin with a big picture view, say 40000 feet. At the highest level, K8S is an orchestrator for microservice apps that run on containers
Let’s try an analogy.
- Players Any team is made up of multiple players with different skills & abilities & each player has a different role to play in the team.
- Coach
And the along comes the coach who gives every player a position and organizes them into a unit which transforms the collection of players into a beautiful formation as below.
The Coach also makes sure the team is in tip top condition by subbing off injured players.
Microservice Apps in the K8S world are just like this.
- App We start out with an app made up of multiple services, each packaged as a pod (the unit) & each one got a job within the overall app. They are like the players.
- K8S K8S is like the coach in the analogy & organizes things so that they work together on the right network, with the right secrets and what we end up with is an useful app made up of smaller moving parts
We call what K8S does as “Orchestration” - where it orchestrates all the individual pieces to work together
The Components
K8S is made up of one or more “masters” & a bunch of workers or “minions”
-
Masters The masters are in charge & make the decision about which minions to run work on.
The bits & bobs that run on the master make up the “Cluster Control Plane”. It includes all the nuances that monitors the clusters, makes the changes, schedules the work & responds to events. -
Minions These workers run the actual work. They report back to the masters & watch for changes
The Deployment
Moving beyond the infrastructure, how do we packaged up the application and give it to the cluster?
The simple way to do that is via a K8S deployment. Once we containerise the app, we define it in a object called deployment.
Deployment is just a manifest that tells K8S how should app look like - what images, ports, replica, etc. in a file.
The master looks at the file and deploys the app on the cluster and everything holds hands & sings “Kum ba yah”
Are you not entertained?
So, are you enlightened? Do you feel all bright?
Well, don’t stare for too long, or you might end up with a sunburn.
Let’s go a little deeper with the Masters & Minions in our next post.