Which TWO statements about Kubernetes PersistentVolumes and PersistentVolumeClaims are correct?
Matching criteria include size and access modes.
Why this answer
A PVC binds to a PV that satisfies its requested storage size and access modes (e.g., ReadWriteOnce, ReadOnlyMany, ReadWriteMany). The binding process matches a PVC to a PV that meets or exceeds the PVC's requirements, and once bound, the PVC consumes the PV's capacity. This is the core mechanism for dynamic or static storage provisioning in Kubernetes.
Exam trap
CNCF often tests the misconception that PVCs are cluster-scoped like PVs, but in reality PVCs are namespaced, and candidates must remember that PVs are cluster-scoped while PVCs are not.