Question 27
Kubernetes FundamentalsA PersistentVolumeClaim (PVC) represents:
Correct answer: A
Explanation
A PersistentVolumeClaim is the Kubernetes object a user creates to ask for storage, and it binds to an available PersistentVolume that matches the request. In Kubernetes, a PVC is essentially "a user's request for storage" that is satisfied by a PersistentVolume through the binding process.
Why each option is right or wrong
A. A user's request for storage that binds to a PersistentVolume
Under the Kubernetes storage API, a PersistentVolumeClaim is the object created by a user to request storage resources, and the control plane then matches it to an available PersistentVolume with compatible size, access modes, and storage class. The binding is part of the standard PV/PVC lifecycle defined by the PersistentVolume and PersistentVolumeClaim resources in the Kubernetes API, so the claim is not the storage itself but the request that gets bound to a volume.
B. A physical disk on a node
C. A backup of pod data
D. A compressed log archive