Kubernetes Interview: What Exactly Happens When You Delete a Pod?
When a pod is deleted in Kubernetes, the API server timestamps the request, services stop routing traffic, kubelet runs any preStop hook, sends SIGTERM followed by a configurable grace period, then SIGKILL if needed, cleans up resources, and finally removes the pod metadata, with controllers optionally recreating a replacement pod.
