Force-remove stuck Terminating pod k8s-debug

Clear finalizers to unstick a pod hung in Terminating; note: confirm node is gone first

kubectl patch po <pod> -n <ns> -p '{"metadata":{"finalizers":null}}' --type=merge; kubectl delete po <pod> -n <ns> --grace-period=0 --force
more k8s-debug all 27 commands →