Sam:
deleting pod is taking too much time sometimes, how can i make it fast?
Tharanath:
You can use kubectl delete pod <pod-name> --force
Tharanath:
this will delete the pod fastly
Tharanath:
For earlier version ogf kubernetes you can use kubectl delete pod <pod-name> --grace-period=0 --force
Sam:
thanks a lot