Skip to content

Instantly share code, notes, and snippets.

@trungungtoan-agilityio
Forked from sharepointoscar/minikubedelete
Created March 26, 2018 08:22
Show Gist options
  • Save trungungtoan-agilityio/f014ae81a121f18c6c5545f646036839 to your computer and use it in GitHub Desktop.
Save trungungtoan-agilityio/f014ae81a121f18c6c5545f646036839 to your computer and use it in GitHub Desktop.
Minikube - Delete all pods from default namespace
# 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