Part 1 (AKS Q&A) – why we call kubernetes as k8s

We call Kubernetes as K8s as a form of abbreviation. Here’s the reason:

If you keep the first letter (K) and the last letter (s), and replace the 8 letters in between with the number 8, you get K8s.


This style of abbreviation is known as a numeronym

The word Kubernetes has 10 letters.

What is kind – Kubernetes IN Docker

kind also refers to a tool: KIND = Kubernetes IN Docker

  • It’s a tool used to run local Kubernetes clusters using Docker containers.
  • Very useful for testing, development, or CI environments.

How Kind different from miniqube

Both Kind and Minikube are tools for running local Kubernetes clusters, but they have key differences in how they work and when to use them.

  • Kind runs Kubernetes inside Docker containers, making it lightweight, fast, and ideal for CI/CD pipelines and quick testing.
  • Minikube runs Kubernetes in a VM or Docker and provides a full-featured local development environment with built-in add-ons and GUI support.
  • Kind is better for automation and multiple clusters, while Minikube is better for local development and simulating production-like environments.
  • Kind uses fewer resources and is quicker to start, but Minikube offers more out-of-the-box features like LoadBalancer support and dashboards.

We use miniqube for single cluster on local while kind for multicluster.

What is kubeadm in Kubernetes?

kubeadm is a Kubernetes tool that helps you bootstrap (initialize and set up) a Kubernetes cluster.

What does kubeadm do?

  • Initializes the control plane (i.e., master node) with:
    • API server
    • Scheduler
    • Controller manager
    • etcd
  • Generates TLS certificates.
  • Sets up the Kubeconfig.
  • Joins worker nodes using kubeadm join.
  • Handles cluster bootstrapping in a clean, repeatable way.

Can we have worker node version higher then master node?

No, we can not keep worker node version higher then master node, Because you will get backward compatibility issues if higher then.

Leave a Reply

Your email address will not be published. Required fields are marked *