Hello ๐Ÿ˜Š, what these flags do? ``` alias kdp='kubectl delete pod --force - . . .

Edith Puclla:
Hello :blush:, what these flags do?

alias kdp='kubectl delete pod --force --grace--period=0'

why I canโ€™t delete the pod just with :

kubectl delete pod my-pod

Sanjay Kumar:
@Edith Puclla - Sometimes pod can take time to delete and by that time you cannot perform anything on terminal until that command complete. So in that case you can force the deletion of pod with immediately using grace period flag.

Edith Puclla:
thank you! @Sanjay Kumar :blush:
should I use it in the test to gain time?

Sanjay Kumar:
Yes that is where it will save some time.

Madhan Kumar:
kubectl delete pod foo --now

Madhan Kumar: