Add --show-all to documentation
`kubectl get pods -l jobgroup=jobexample --show-all -o name` will not show the completed jobs. This caught me when running through the steps myself.pull/4148/head
parent
2d159b86f6
commit
fb2ba2d962
|
@ -99,7 +99,7 @@ There is not a single command to check on the output of all jobs at once,
|
||||||
but looping over all the pods is pretty easy:
|
but looping over all the pods is pretty easy:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ for p in $(kubectl get pods -l jobgroup=jobexample -o name)
|
$ for p in $(kubectl get pods -l jobgroup=jobexample --show-all -o name)
|
||||||
do
|
do
|
||||||
kubectl logs $p
|
kubectl logs $p
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue