πŸš€Launching Your First Kubernetes Cluster with Kind & Nginx

Apurva GargoteApurva Gargote
2 min read

Let's take it a step further with hands-on practice by setting up a Kubernetes cluster using Kind (Kubernetes in Docker) and creating Nginx pod as our first pod! πŸš€


πŸ” What is Kind?

Kind (Kubernetes in Docker) is a lightweight tool that lets you quickly create Kubernetes clusters inside Docker containers. It's a great alternative to Minikube for local development, testing, and CI/CD pipelines.

✨ Features of Kind:

βœ… Runs Kubernetes inside Docker 🐳
βœ… Lightweight & fast πŸš€
βœ… Supports multiple Kubernetes versions
βœ… Works on Linux, macOS, and Windows
βœ… Perfect for testing Kubernetes workloads locally


πŸ› οΈ Task-01: Install Kind

πŸ”Ή First, install Kind by following the official guide: Kind Installation.
πŸ”Ή Ensure Docker is installed before proceeding.

βœ… Create a Kind Cluster

Once installed, create a Kubernetes cluster using:

kind create cluster --name my-cluster

To verify, run:

kubectl cluster-info --context kind-my-cluster

πŸ”Ή Understanding Kubernetes Pods

πŸ€” What is a Pod?

A Pod is the smallest deployable unit in Kubernetes. It consists of:

  • One or more containers 🐳

  • Shared storage & network

  • A specification defining how to run the containers

A Pod acts as a "logical host", ensuring all its containers run together efficiently.


πŸ› οΈ Task-02: Create a Pod Definition (nginx-pod.yaml)

apiVersion: v1
kind: Pod
metadata:
  name: nginx-pod
  labels:
    app: nginx
spec:
  containers:
    - name: nginx-container
      image: nginx:latest
      ports:
        - containerPort: 80

πŸ›  Explanation:

  1. apiVersion: v1 β†’ Uses v1 API for Kubernetes objects.

  2. kind: Pod β†’ Defines this as a Pod resource.

  3. metadata:

    • name: nginx-pod β†’ Assigns a name to the Pod.

    • labels: app: nginx β†’ Adds a label for easy identification.

  4. spec:

    • containers β†’ Lists the containers within the pod.

    • name: nginx-container β†’ Names the container inside the pod.

    • image: nginx:latest β†’ Uses the latest Nginx Docker image.

    • ports: containerPort: 80 β†’ Exposes port 80 for web traffic (HTTP).

βœ… Apply the YAML file

kubectl apply -f nginx-pod.yaml

Check if the Pod is running:

kubectl get pods

πŸŽ‰ Congrats! You've successfully created an Nginx Pod.

0
Subscribe to my newsletter

Read articles from Apurva Gargote directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Apurva Gargote
Apurva Gargote

πŸ‘¨β€πŸ’» Last-year student diving deep into DevOps, Cloud Engineering, and Infrastructure Automation. Passionate about building scalable, efficient, and secure systems. Let’s connect and build something amazing! πŸš€