Fix codeblock in update deployment section (#13029)

Corrects codeblock in the "Update deployment" section of doc:
content/en/docs/concepts/workloads/controllers/deployment.md
This commit is contained in:
Bob Killen
2019-03-07 19:26:06 -05:00
committed by Kubernetes Prow Robot
parent 7130b8c58b
commit cf52474db1
@@ -172,10 +172,9 @@ Suppose that you now want to update the nginx Pods to use the `nginx:1.9.1` imag
instead of the `nginx:1.7.9` image.
```shell
kubectl --record deployment.apps/nginx-deployment set image deployment.v1.apps/nginx-deployment
kubectl --record deployment.apps/nginx-deployment set image deployment.v1.apps/nginx-deployment nginx=nginx:1.9.1
```
```
nginx=nginx:1.9.1
image updated
```