We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860a3df commit 44cbe9fCopy full SHA for 44cbe9f
02-PODs-with-kubectl/README.md
@@ -188,4 +188,21 @@ kubectl get pod my-first-pod -o yaml
188
189
# Get service definition YAML output
190
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
207
208
```
0 commit comments