Fix invalid command (kubectl rolling-update) (#17607)

`kubectl rolling-update` is the right command.

Doc: https://kubernetes.io/docs/tasks/run-application/rolling-update-replication-controller/
This commit is contained in:
nonylene 2019-11-22 06:43:29 +09:00 committed by Kubernetes Prow Robot
parent d64b052a54
commit bd50474a84
1 changed files with 2 additions and 2 deletions

View File

@ -1143,9 +1143,9 @@ it is created.
## Alternative to Deployments
### kubectl rolling update
### kubectl rolling-update
[`kubectl rolling update`](/docs/reference/generated/kubectl/kubectl-commands#rolling-update) updates Pods and ReplicationControllers
[`kubectl rolling-update`](/docs/reference/generated/kubectl/kubectl-commands#rolling-update) updates Pods and ReplicationControllers
in a similar fashion. But Deployments are recommended, since they are declarative, server side, and have
additional features, such as rolling back to any previous revision even after the rolling update is done.