A court e-filing service image defines CMD, but the Pod template sets container command and args. Which statement is true?
Select an answer to reveal the explanation.
Short Explanation
The image ships a default playlist (ENTRYPOINT/CMD), but the Pod spec is the DJ—command and args override what actually starts. You do not need to rebuild just to tweak startup flags.
Full Explanation
In a Pod container spec, command maps to ENTRYPOINT and args to CMD, overriding image defaults for that container instance. This lets application manifests adjust startup without a new image build. The override is a core Pod field behavior, not limited to init containers, and does not require image rebuilds.