Kubernetes solves the problem that pod in Terminating state cannot be deleted

Solve Kubernetes POD Terminating state can not be deleted question

The solution is to add --grace-period=0 --force to forcefully delete the parameter

Force delete
kubectl -n test delete pod <podName> --grace-period=0 --force **

Guess you like

Origin blog.csdn.net/weixin_43357497/article/details/111828371