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.
This commit is contained in:
Tommy Falgout
2017-06-08 19:42:05 -05:00
committed by Andrew Chen
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:
```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