...

/

Deleting a Namespace and All Its Objects

Deleting a Namespace and All Its Objects

In this lesson, we will delete the Namespace and everything associated with it.

The Cascaded Deletion

Another handy feature of the Namespaces is their cascading effect. If, for example, we delete the testing Namespace, all the objects and the resources running inside it will be removed as well.

Press + to interact
kubectl delete ns testing
kubectl -n testing get all

We deleted the testing Namespace and retrieved all the objects residing in it. The output is as follows.

Press + to interact
NAME READY STATUS RESTARTS AGE
po/go-demo-2-api-56dfb69dbd-8w6rf 0/1 Terminating 0 2m
po/go-demo-2-api-56dfb69dbd-hrr4b 0/1 Terminating 0 2m
po/go-demo-2-api-56dfb69dbd-ws855 0/1 Terminating 0 2m
po/go-demo-2-db-5b49cc946b-xdd6v 0/1 Terminating 0 2m

Please note that, in your case, the output might show more ...

Access this course and 1400+ top-rated courses and projects.