TECHIES WORLD

For Techs.... Techniques.... Technologies....

AWSBashLinux

How to delete a namespace in Kubernates

We can use kubectl command to delete namespaces in Kubernates.

But this command need to be used in caution as it removed all resources corresponding to the given namespace.

#kubectl delete namespace NAMESPACE

Where NAMESPACE need to be replaced with the name of the required namespace.

That's all…