tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Kubernetes > How to delete a Kubernetes Deployment

How to delete a Kubernetes Deployment

Author: Venkata Sudhakar

The below example shows how to delete a Kubernetes Deployment.

1$ kubectl get deployments
2NAME   READY   UP-TO-DATE   AVAILABLE   AGE
3http   5/5     5            5           10m
4 
5$ kubectl delete deployment http
6deployment.apps "http" deleted
7 
8$ kubectl get deployments
9No resources found in default namespace.

 
  


  
bl  br