π‘Managing Persistent Volumes in Kubernetes.


π― What is a Persistent Volume (PV)?
In Kubernetes, Persistent Volume (PV) is storage that keeps your data even if a pod is deleted or restarted.
A Persistent Volume Claim (PVC) is like a request that an application makes to use this storage.
Think of PV as a storage drive and PVC as asking for a piece of that drive for your app.
π οΈ Task 1: Adding a Persistent Volume to Your Todo App Deployment
π Step 1: Create a Persistent Volume (PV) - pv.yml
π What does it do?
- This file creates storage in Kubernetes using a folder on your machine.
apiVersion: v1
kind: PersistentVolume
metadata:
name: todo-pv # Name of the storage
spec:
capacity:
storage: 1Gi # Total storage size (1 Gigabyte)
accessModes:
- ReadWriteOnce # One node can write, multiple can read
hostPath:
path: "/mnt/data" # Folder on your system to store data
β In simple terms:
It creates 1GB storage at
/mnt/data
on the host system.Only one node can write, but others can read.
π Run this command to apply:
kubectl apply -f pv.yml
π Step 2: Create a Persistent Volume Claim (PVC) - pvc.yml
π What does it do?
- The PVC requests storage from the PV for the app.
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: todo-pvc # Name of the storage request
spec:
accessModes:
- ReadWriteOnce # Must match the PV
resources:
requests:
storage: 500Mi # Asking for 500MB of storage
β In simple terms:
- It asks for 500MB of storage from the available 1GB PV.
π Run this command to apply:
kubectl apply -f pvc.yml
π Step 3: Update Deployment to Use PVC - deployment.yml
π What does it do?
- It mounts the storage so your app can use it.
volumes:
- name: todo-storage
persistentVolumeClaim:
claimName: todo-pvc
containers:
- name: todo-app
volumeMounts:
- mountPath: "/data" # Inside the container
name: todo-storage
β In simple terms:
- The storage is attached to the container at
/data
.
π Run this command to apply:
kubectl apply -f deployment.yml
π Step 4: Verify That It Works
π Check if storage is created and connected:
kubectl get pv # Check Persistent Volume
kubectl get pvc # Check Persistent Volume Claim
kubectl get pods # Check if the app is running
π οΈ Task 2: Access Data in the Persistent Volume
π Step 1: Open the Podβs Terminal
π Run this command to enter the running pod:
kubectl exec -it <pod-name> -- /bin/bash
π Step 2: Save a File in the Persistent Volume
π Go to the storage folder inside the pod:
cd /data
π Create a test file:
echo "Hello Kubernetes!" > testfile.txt
π Step 3: Restart the Pod & Check if Data is Still There
π Delete the pod:
kubectl delete pod <pod-name>
π Check if a new pod starts:
kubectl get pods
π Enter the new pod and check the file:
kubectl exec -it <new-pod-name> -- /bin/bash
cat /data/testfile.txt
β If the file is still there, your Persistent Volume is working! π
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! π