Question 36
Kubernetes FundamentalsWhat does a PersistentVolumeClaim (PVC) represent in Kubernetes?
Correct answer: A
Explanation
A PersistentVolumeClaim is the Kubernetes object a user creates to ask for storage resources. It represents "a request for storage by a user" and lets pods bind to available PersistentVolumes that match the requested size and access mode.
Why each option is right or wrong
A. A request for storage by a user
Under Kubernetes storage architecture, a PersistentVolumeClaim is the API object a pod references to obtain storage; it is created by the user and then matched by the control plane to a suitable PersistentVolume. The claim specifies the needed capacity and access mode, and binding occurs only when an available PV satisfies those requirements, so the PVC itself is the request rather than the storage asset.
B. A type of storage backend
C. A node's local storage
D. A backup of a volume