Skip to content

Commit 6e93717

Browse files
authored
Merge pull request #24437 from oomichi/fix-output-of-rolling-status
Fix output of 'kubectl rollout status'
2 parents 7203cd1 + 8b3e6aa commit 6e93717

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/concepts/workloads/controllers/deployment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Follow the steps given below to create the above Deployment:
102102
The output is similar to:
103103
```
104104
Waiting for rollout to finish: 2 out of 3 new replicas have been updated...
105-
deployment.apps/nginx-deployment successfully rolled out
105+
deployment "nginx-deployment" successfully rolled out
106106
```
107107

108108
4. Run the `kubectl get deployments` again a few seconds later.
@@ -205,7 +205,7 @@ Follow the steps given below to update your Deployment:
205205
```
206206
or
207207
```
208-
deployment.apps/nginx-deployment successfully rolled out
208+
deployment "nginx-deployment" successfully rolled out
209209
```
210210

211211
Get more details on your updated Deployment:
@@ -857,7 +857,7 @@ kubectl rollout status deployment.v1.apps/nginx-deployment
857857
The output is similar to this:
858858
```
859859
Waiting for rollout to finish: 2 of 3 updated replicas are available...
860-
deployment.apps/nginx-deployment successfully rolled out
860+
deployment "nginx-deployment" successfully rolled out
861861
```
862862
and the exit status from `kubectl rollout` is 0 (success):
863863
```shell

0 commit comments

Comments
 (0)