I have the following pods:
NAME READY STATUS RESTARTS AGE xxx-myactivities-79f49cdfb4-nwg22
You have these alternatives:
kubectl delete pod xxx --now
Or
SSH into the node the stuck pod was scheduled on Running docker ps | grep {pod name} to get the Docker Container ID Running docker rm -f {container id}
docker ps | grep {pod name}
docker rm -f {container id}
kubectl delete pod NAME --grace-period=0 --force