Public-health wants every key from a ConfigMap loaded as environment variables on a stats API Pod without listing each key. Which consumption pattern does that?
Select an answer to reveal the explanation.
Short Explanation
envFrom is the bulk pour—tip the whole ConfigMap into the container's environment in one go instead of wiring each key by hand.
Full Explanation
The envFrom field can reference a ConfigMap (or Secret) and inject all of its keys as environment variables in the container. hostNetwork, nodeSelector, and imagePullPolicy address networking, scheduling, and image pulls, not bulk config injection.