An HR application emits structured JSON log lines on stdout. How does that change kubectl log retrieval for the administrator?
Select an answer to reveal the explanation.
Short Explanation
JSON on stdout is still just bytes on the wire—kubectl logs doesn’t care if it’s poetry or JSON. The format is the app’s convention; the retrieval path stays the same.
Full Explanation
Kubernetes captures container stdout/stderr regardless of whether the application writes plain text or structured JSON. kubectl logs retrieves those bytes; parsers and aggregators may interpret JSON later. Sidecar conversion, ConfigMap logging-driver myths, and hostNetwork are not required for basic retrieval.