Merge pull request #5154 from qrevel/patch-3

Update basic-stateful-set.md
This commit is contained in:
Radhika Puthiyetath
2017-08-24 15:39:34 -07:00
committed by GitHub
@@ -667,7 +667,7 @@ web-2 1/1 Running 0 18s
Get the Pod's container.
```shell{% raw %}
get po web-2 --template '{{range $i, $c := .spec.containers}}{{$c.image}}{{end}}'
kubectl get po web-2 --template '{{range $i, $c := .spec.containers}}{{$c.image}}{{end}}'
gcr.io/google_containers/nginx-slim:0.8
{% endraw %}
```
@@ -738,7 +738,7 @@ web-1 1/1 Running 0 18s
Get the `web-1` Pods container.
```shell{% raw %}
get po web-1 --template '{{range $i, $c := .spec.containers}}{{$c.image}}{{end}}'
kubectl get po web-1 --template '{{range $i, $c := .spec.containers}}{{$c.image}}{{end}}'
gcr.io/google_containers/nginx-slim:0.8
{% endraw %}
```