Skip to content

Instantly share code, notes, and snippets.

View theboshy's full-sized avatar
:shipit:
bosh

Peter Lobo theboshy

:shipit:
bosh
View GitHub Profile
@theboshy
theboshy / minikubedelete
Created April 17, 2018 22:04 — forked from sharepointoscar/minikubedelete
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