How Kubernetes pod get terminated
A stage by stage transition
Last updated
Was this helpful?
A stage by stage transition
Last updated
Was this helpful?
The pod is set to Terminating
. And it will be isolated from end points
will be executed. It is special command or http request sent to containers in the pod.
Kubernetes sends SIGTERM signal to all the containers in the pod. This lets them know that they are going to be terminated. SIGTERM can be handled, or ignored.
If the containers are still running it sends SIGKILL command. Kubernetes cleanup all the objects related to the terminated pod.