An open-data team uses cloud disks that must land in the same zone as the scheduled Pod. Which StorageClass volumeBindingMode delays binding until a consumer Pod is scheduled?
Select an answer to reveal the explanation.
Short Explanation
Immediate binding is like assigning a locker before you know which gym floor the athlete uses—easy to pick the wrong building. WaitForFirstConsumer holds off until the Pod has a seating chart (node/zone), then provisions the disk where it can actually attach. That’s the topology-aware cloud-disk pattern.
Full Explanation
volumeBindingMode WaitForFirstConsumer delays PersistentVolume binding and dynamic provisioning until a Pod using the PVC is scheduled, allowing topology constraints to influence volume placement. Immediate binds as soon as the PVC is created. Recreate and Manual are not Kubernetes volumeBindingMode values for this purpose.