Which statement correctly describes the difference between a Kubernetes Volume and a Persistent Volume?
Think about the lifecycle and reusability of storage in Kubernetes Pods.
Volumes are temporary storage tied to a Pod's lifecycle. Persistent Volumes are independent storage resources that can outlive Pods and be reused.
What is the expected output when running kubectl get pv in a cluster with one Persistent Volume named pv-data that is Available and has a capacity of 10Gi?
Check the status and capacity fields for an Available Persistent Volume.
An Available Persistent Volume shows no claim and has the status 'Available'. Capacity matches the provisioned size.
Which YAML snippet correctly defines a Persistent Volume with 20Gi storage, ReadWriteOnce access mode, and a Retain reclaim policy?
Check storage size units, access modes, and reclaim policy spelling.
Option C uses correct storage size unit 'Gi', access mode 'ReadWriteOnce', and reclaim policy 'Retain'.
A Pod fails to start with the error MountVolume.SetUp failed for volume "data" : persistentvolumeclaim "data-pvc" not found. What is the most likely cause?
Focus on the error message about the PersistentVolumeClaim.
The error indicates the PersistentVolumeClaim 'data-pvc' is missing, so the Pod cannot mount the volume.
Arrange the steps in the correct order to use a Persistent Volume in a Kubernetes Pod.
Think about resource creation and binding before Pod deployment.
First create the PersistentVolume, then the PersistentVolumeClaim, verify binding, then deploy the Pod.