An open-data team has one ReadWriteOnce PersistentVolume. What happens if two PVCs try to bind that same PV at once?
Select an answer to reveal the explanation.
Short Explanation
One key, one lease. A single PV binds to one PVC; a second claim doesn’t get to share that lock just because it wants to.
Full Explanation
PersistentVolumes bind one-to-one with PersistentVolumeClaims. A second PVC cannot bind an already-bound PV. ReadWriteOnce constrains how many nodes may mount a bound volume for writing; it does not allow two PVCs to bind the same PV, merge claims, or silently upgrade access modes to ReadWriteMany.