-
-
Save lostcitizen/9c8981e83952ac58d0a8791e68792beb to your computer and use it in GitHub Desktop.
Minikube - Delete all pods from default namespace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# delete all pods | |
kubectl delete --all pods --namespace=default | |
# deete all deployments | |
kubectl delete --all deployments --namespace=default | |
# delete all services | |
kubectl delete --all services --namespace=default | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment