To delete a pod in Kubernetes that is in terminating status first you can try the following command:
kubectl delete pods <pod>
This will try to gracefully terminate the pod, if something happens and it cannot terminate you can use this next command:
kubectl delete pods <pod> --grace-period=0 --force
Top comments (0)