diff --git a/content/en/docs/concepts/workloads/controllers/deployment.md b/content/en/docs/concepts/workloads/controllers/deployment.md index 7d3834ce10..0910dfbdd1 100644 --- a/content/en/docs/concepts/workloads/controllers/deployment.md +++ b/content/en/docs/concepts/workloads/controllers/deployment.md @@ -40,7 +40,6 @@ The following are typical use cases for Deployments: * [Use the status of the Deployment](#deployment-status) as an indicator that a rollout has stuck. * [Clean up older ReplicaSets](#clean-up-policy) that you don't need anymore. - ## Creating a Deployment The following is an example of a Deployment. It creates a ReplicaSet to bring up three `nginx` Pods: @@ -730,12 +729,16 @@ Eventually, resume the Deployment and observe a new ReplicaSet coming up with al ```shell kubectl rollout resume deployment.v1.apps/nginx-deployment +``` + ``` deployment.apps/nginx-deployment resumed ``` + ```shell kubectl get rs -w ``` + ``` NAME DESIRED CURRENT READY AGE nginx-2142116321 2 2 2 2m