πLaunching Your First Kubernetes Cluster with Kind & Nginx


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:
apiVersion: v1
β Uses v1 API for Kubernetes objects.kind: Pod
β Defines this as a Pod resource.metadata
:name: nginx-pod
β Assigns a name to the Pod.labels: app: nginx
β Adds a label for easy identification.
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.
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! π