* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  bump openstack cli tools versions to working values
  fix header size for sub-sections under Services
  Finish #4036
  Be more specific about cpu-shares passed to Docker (#4016)
  Clarify the required uniqueness of Label Key
  Add --show-all to documentation
  docs(service): remove invalid `,` from example
  Add  "remove" example for kubectl patch (#4042)
  Fix wrong link to create a ConfigMap
  Fix a typo in the High Availability docs (#4048)
  Remove ports from ExternalName Service example
  remove extra that
  update kops installation instructions
This commit is contained in:
Andrew Chen
2017-06-21 14:43:13 -07:00
11 changed files with 27 additions and 24 deletions
@@ -8,7 +8,7 @@ This page provides a series of usage examples demonstrating how to configure Pod
{% capture prerequisites %}
* {% include task-tutorial-prereqs.md %}
* [Create a ConfigMap](/docs/tasks/configure-pod-container/configmap.html)
* [Create a ConfigMap](/docs/tasks/configure-pod-container/configmap/)
{% endcapture %}
{% capture steps %}
@@ -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