modified: README.md

This commit is contained in:
Márcio Fernandes
2026-06-21 15:14:01 +00:00
parent 5f87088895
commit 9dfa5546c5
+12
View File
@@ -182,6 +182,18 @@ echo $POD_NAME
kubectl get pods -A -o wide | grep 10.0.3.224
```
**Get all pods Shows NAMESPACE, NAME, READY, STATUS, RESTARTS, AGE.**
``` bash
kubectl get pods -A
```
**Get all pods on specific node.**
``` bash
kubectl get pods -A -o wide --field-selector spec.nodeName=${NODE_NAME}
```
### delete Pod
``` bash