Forcefully Delete Kubernetes Pod
Problem
A pod is stuck in terminating state as per the Kubectl output.
Deletion of pod fails even after running the command.
$ kubectl delete pod [pod_name] -n [namespace] --grace-period 0Environment
Platform9 Managed Kubernetes - All Versions
Procedure
Verify that the container(s) associated with the pod isn't running on the node. This can be verified by identifying the container and the node name using the command below.
$ kubectl describe pod [pod_name] -n [namespace]SSH into the node and verify that that the container associated isn't running by running the following command.
See this article for more details on containerd commands.
$ docker ps
{% endtab %}
{% tab language="bash" title="containerd" %}
$ ctr -n k8s.io containers listOnce it's verified that the container isn't present, run the following command to delete the pod forcefully.
PreviousHow To Enable/Disable ETCD Backup Using Qbert API
NextConfigure BASH Autocomplete for Kubectl CLI on MacOS X
Last updated
