Kubernetes Delete

From UVOO Tech Wiki
Revision as of 19:17, 8 April 2021 by Busk (talk | contribs) (Created page with "https://stackoverflow.com/questions/47128586/how-to-delete-all-resources-from-kubernetes-one-time/47137442 ``` kubectl delete all --all -n {namespace} Method 2: You can also...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

https://stackoverflow.com/questions/47128586/how-to-delete-all-resources-from-kubernetes-one-time/47137442

kubectl delete all --all -n {namespace}
Method 2: You can also delete a namespace and re-create it. This will delete everything that belongs to it:

kubectl delete namespace {namespace}
kubectl create namespace {namespace}