Update deployment.md (#12301)
All resources must be specified before image changes: deployment.apps/nginx-deployment . So I reorganised the command order.
This commit is contained in:
parent
134a391407
commit
eab93ae932
|
@ -171,8 +171,8 @@ 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 set image deployment.v1.apps/nginx-deployment nginx=nginx:1.9.1 --record
|
||||
deployment.apps/nginx-deployment image updated
|
||||
$ kubectl --record deployment.apps/nginx-deployment set image deployment.v1.apps/nginx-deployment
|
||||
nginx=nginx:1.9.1 image updated
|
||||
```
|
||||
|
||||
Alternatively, you can `edit` the Deployment and change `.spec.template.spec.containers[0].image` from `nginx:1.7.9` to `nginx:1.9.1`:
|
||||
|
|
Loading…
Reference in New Issue