Delete pods with ''-l run-rng' and remove xargs

Delete pods with ''-l run-rng' and remove xargs
This commit is contained in:
Jérémy GARROUSTE
2018-04-15 16:37:10 +02:00
committed by GitHub
parent 6ad7a285e7
commit b036b5f24b

View File

@@ -431,8 +431,7 @@ The timestamps should give us a hint about how many pods are currently receiving
- Remove these pods:
```bash
kubectl get pods -l run=rng,isactive!=yes -o name |
xargs kubectl delete
kubectl delete pods -l run=rng,isactive!=yes -o name
```
]