Public-health workloads need scratch space that disappears when the Pod is removed and must not outlive that Pod. Which volume type fits?
Select an answer to reveal the explanation.
Short Explanation
emptyDir is the whiteboard in the meeting room—useful while the meeting (Pod) is going, wiped when everyone leaves. Perfect for scratch and caches you don’t need tomorrow. It’s not a durable PV or an NFS share for forever data.
Full Explanation
emptyDir volumes are created when a Pod is assigned to a node and exist only for that Pod’s lifetime; data is deleted when the Pod is removed. They are appropriate for scratch space, not durable persistence. Retain PVs, NFS, and StorageClass-without-PVC constructions are the wrong tools for Pod-tied ephemeral scratch.