Skip to content

Commit 44cbe9f

Browse files
Kalyan Reddy DaidaKalyan Reddy Daida
Kalyan Reddy Daida
authored and
Kalyan Reddy Daida
committed
Welcome to Stack Simplify
1 parent 860a3df commit 44cbe9f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

02-PODs-with-kubectl/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,21 @@ kubectl get pod my-first-pod -o yaml
188188
189189
# Get service definition YAML output
190190
kubectl get service my-first-service -o yaml
191+
```
192+
193+
## Step-07: Clean-Up
194+
```
195+
# Get all Objects in default namespace
196+
kubectl get all
197+
198+
# Delete Services
199+
kubectl delete svc my-first-service
200+
kubectl delete svc my-first-service2
201+
kubectl delete svc my-first-service3
202+
203+
# Delete Pod
204+
kubectl delete pod my-first-pod
205+
206+
# Get all Objects in default namespace
207+
kubectl get all
191208
```

0 commit comments

Comments
 (0)