Intermediate
Kubernetes
Q42 / 100
What is the purpose of a "PersistentVolume" (PV) and "PersistentVolumeClaim" (PVC)?
Correct! Well done.
Incorrect.
The correct answer is B) A PV represents a piece of storage provisioned in the cluster (independent of any Pod's lifecycle), and a PVC is a request by a user for storage that binds to a matching PV, allowing Pods to use persistent storage
B
Correct Answer
A PV represents a piece of storage provisioned in the cluster (independent of any Pod's lifecycle), and a PVC is a request by a user for storage that binds to a matching PV, allowing Pods to use persistent storage
Explanation
PVs are cluster resources representing actual storage (e.g. a cloud disk), while PVCs are namespaced requests for storage that Pods reference, decoupling storage provisioning from consumption.
Progress
42/100