A county app pod mounts a PersistentVolumeClaim as a volume. What must be true before that pod can become Ready using the claim?
Select an answer to reveal the explanation.
Short Explanation
The pod is asking for a claimed disk. If the claim is still shopping for a volume, the pod waits—no Bound claim, no happy Ready mount.
Full Explanation
Pods reference PersistentVolumeClaims in their volume specs. Until the PVC is Bound, the volume is not available to attach or mount, so the pod typically remains Pending or fails to become Ready. Claims are namespaced with the workload (not forced into kube-system), Pending is not silently replaced by emptyDir, and reclaimPolicy does not gate pod readiness.