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
Tommy Falgout 2017-06-08 19:42:05 -05:00 committed by Andrew Chen
parent 2d159b86f6
commit fb2ba2d962
1 changed files with 1 additions and 1 deletions

View File

@ -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:
```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
kubectl logs $p
done