Merge pull request #28887 from chenxuc/pause-resume2

clarify rollout behavior in deployment
This commit is contained in:
Kubernetes Prow Robot
2021-11-09 23:13:26 -08:00
committed by GitHub
@@ -703,6 +703,7 @@ You can pause a Deployment before triggering one or more updates and then resume
apply multiple fixes in between pausing and resuming without triggering unnecessary rollouts. apply multiple fixes in between pausing and resuming without triggering unnecessary rollouts.
* For example, with a Deployment that was created: * For example, with a Deployment that was created:
Get the Deployment details: Get the Deployment details:
```shell ```shell
kubectl get deploy kubectl get deploy
@@ -753,7 +754,7 @@ apply multiple fixes in between pausing and resuming without triggering unnecess
REVISION CHANGE-CAUSE REVISION CHANGE-CAUSE
1 <none> 1 <none>
``` ```
* Get the rollout status to ensure that the Deployment is updated successfully: * Get the rollout status to verify that the existing ReplicaSet has not changed:
```shell ```shell
kubectl get rs kubectl get rs
``` ```