We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Delete all pods that are hanging on Termination state:
Termination
kubectl get pods --all-namespaces | grep Terminating | tr -s ' ' | cut -d ' ' -f1,2 | while read namespace pod ; do kubectl -n $namespace delete --grace-period=0 --force pod $pod ; done