A city engineer needs the application's recent stdout and stderr after a crash to begin debugging. Which approach retrieves the current container's output stream?
Select an answer to reveal the explanation.
Short Explanation
App chatter lives on stdout and stderr—kubectl logs is how you listen. Describe and auth checks talk about objects, not the process's print stream.
Full Explanation
kubectl logs reads the container runtime's captured stdout and stderr for the selected pod and container. That is the primary admin path for application output streams. Events, node describe, and authorization checks provide other signals and do not substitute for container log retrieval.