A municipal SRE plans to delete a failing pod after collecting evidence. Why should logs be dumped before deletion when no centralized logging is in place?
Select an answer to reveal the explanation.
Short Explanation
No log shipper means the pod's diary burns when you delete it. Save the logs first, then tear down—postmortems hate empty folders.
Full Explanation
Without a cluster log pipeline, kubectl logs reads ephemeral runtime-held streams tied to the pod's containers. Deleting the pod removes that local evidence. etcd does not retain application stdout, delete does not email logs, and Pending-after-delete retention is not a Kubernetes guarantee.