Link sections that talk about deployment status
This commit is contained in:
@@ -86,24 +86,56 @@ After creating or updating a Deployment, you would want to confirm whether it su
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ kubectl rollout status deployment/nginx-deployment
|
$ kubectl rollout status deployment/nginx-deployment
|
||||||
deployment nginx-deployment successfully rolled out
|
deployment "nginx-deployment" successfully rolled out
|
||||||
```
|
```
|
||||||
|
|
||||||
This verifies the Deployment's `.status.observedGeneration` >= `.metadata.generation`, and its up-to-date replicas
|
This verifies the Deployment's `.status.observedGeneration` >= `.metadata.generation`, and its up-to-date replicas
|
||||||
(`.status.updatedReplicas`) matches the desired replicas (`.spec.replicas`) to determine if the rollout succeeded.
|
(`.status.updatedReplicas`) matches the desired replicas (`.spec.replicas`) to determine if the rollout succeeded.
|
||||||
If the rollout is still in progress, it watches for Deployment status changes and prints related messages.
|
It also expects that the available replicas running (`.spec.availableReplicas`) will be at least the minimum required
|
||||||
|
based on the Deployment strategy. If the rollout is still in progress, it watches for Deployment status changes and
|
||||||
Note that it's impossible to know whether a Deployment will ever succeed, so if the above command doesn't return success,
|
prints related messages.
|
||||||
you'll need to timeout and give up at some point.
|
|
||||||
|
|
||||||
Additionally, if you set `.spec.minReadySeconds`, you would also want to check if the available replicas (`.status.availableReplicas`) matches the desired replicas too.
|
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ kubectl get deployments
|
$ kubectl rollout status deployment/nginx-deployment
|
||||||
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
|
Waiting for rollout to finish: 2 out of 10 new replicas have been updated...
|
||||||
nginx-deployment 3 3 3 3 20s
|
Waiting for rollout to finish: 2 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 2 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 3 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 3 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 4 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 4 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 4 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 4 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 4 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 5 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 5 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 5 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 5 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 6 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 6 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 6 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 6 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 6 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 7 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 7 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 7 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 7 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 8 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 8 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 8 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 9 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 9 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 9 out of 10 new replicas have been updated...
|
||||||
|
Waiting for rollout to finish: 1 old replicas are pending termination...
|
||||||
|
Waiting for rollout to finish: 1 old replicas are pending termination...
|
||||||
|
Waiting for rollout to finish: 1 old replicas are pending termination...
|
||||||
|
Waiting for rollout to finish: 9 of 10 updated replicas are available...
|
||||||
|
deployment "nginx-deployment" successfully rolled out
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For more information about the status of a Deployment [read more here](#deployment-status).
|
||||||
|
|
||||||
|
|
||||||
## Updating a Deployment
|
## Updating a Deployment
|
||||||
|
|
||||||
**Note:** a Deployment's rollout is triggered if and only if the Deployment's pod template (i.e. `.spec.template`) is changed,
|
**Note:** a Deployment's rollout is triggered if and only if the Deployment's pod template (i.e. `.spec.template`) is changed,
|
||||||
@@ -129,7 +161,7 @@ To see its rollout status, simply run:
|
|||||||
```shell
|
```shell
|
||||||
$ kubectl rollout status deployment/nginx-deployment
|
$ kubectl rollout status deployment/nginx-deployment
|
||||||
Waiting for rollout to finish: 2 out of 3 new replicas have been updated...
|
Waiting for rollout to finish: 2 out of 3 new replicas have been updated...
|
||||||
deployment nginx-deployment successfully rolled out
|
deployment "nginx-deployment" successfully rolled out
|
||||||
```
|
```
|
||||||
|
|
||||||
After the rollout succeeds, you may want to `get` the Deployment:
|
After the rollout succeeds, you may want to `get` the Deployment:
|
||||||
@@ -244,12 +276,12 @@ deployment "nginx-deployment" image updated
|
|||||||
|
|
||||||
The rollout will be stuck.
|
The rollout will be stuck.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ kubectl rollout status deployments nginx-deployment
|
$ kubectl rollout status deployments nginx-deployment
|
||||||
Waiting for rollout to finish: 2 out of 3 new replicas have been updated...
|
Waiting for rollout to finish: 2 out of 3 new replicas have been updated...
|
||||||
```
|
```
|
||||||
|
|
||||||
Press Ctrl-C to stop the above rollout status watch.
|
Press Ctrl-C to stop the above rollout status watch. For more information on stuck rollouts, [read more here](#deployment-status).
|
||||||
|
|
||||||
You will also see that both the number of old replicas (nginx-deployment-1564180365 and nginx-deployment-2035384211) and new replicas (nginx-deployment-3066724191) are 2.
|
You will also see that both the number of old replicas (nginx-deployment-1564180365 and nginx-deployment-2035384211) and new replicas (nginx-deployment-3066724191) are 2.
|
||||||
|
|
||||||
@@ -549,7 +581,7 @@ updates you've requested have been completed.
|
|||||||
|
|
||||||
You can check if a Deployment has completed by using `kubectl rollout status`. If the rollout completed successfully, `kubectl rollout status` returns a zero exit code.
|
You can check if a Deployment has completed by using `kubectl rollout status`. If the rollout completed successfully, `kubectl rollout status` returns a zero exit code.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ kubectl rollout status deploy/nginx
|
$ kubectl rollout status deploy/nginx
|
||||||
Waiting for rollout to finish: 2 of 3 updated replicas are available...
|
Waiting for rollout to finish: 2 of 3 updated replicas are available...
|
||||||
deployment "nginx" successfully rolled out
|
deployment "nginx" successfully rolled out
|
||||||
@@ -594,7 +626,7 @@ You may experience transient errors with your Deployments, either due to a low t
|
|||||||
of error that can be treated as transient. For example, let's suppose you have insufficient quota. If you describe the Deployment
|
of error that can be treated as transient. For example, let's suppose you have insufficient quota. If you describe the Deployment
|
||||||
you will notice the following section:
|
you will notice the following section:
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ kubectl describe deployment nginx-deployment
|
$ kubectl describe deployment nginx-deployment
|
||||||
<...>
|
<...>
|
||||||
Conditions:
|
Conditions:
|
||||||
@@ -667,7 +699,7 @@ required new replicas are available (see the Reason of the condition for the par
|
|||||||
|
|
||||||
You can check if a Deployment has failed to progress by using `kubectl rollout status`. `kubectl rollout status` returns a non-zero exit code if the Deployment has exceeded the progression deadline.
|
You can check if a Deployment has failed to progress by using `kubectl rollout status`. `kubectl rollout status` returns a non-zero exit code if the Deployment has exceeded the progression deadline.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ kubectl rollout status deploy/nginx
|
$ kubectl rollout status deploy/nginx
|
||||||
Waiting for rollout to finish: 2 out of 3 new replicas have been updated...
|
Waiting for rollout to finish: 2 out of 3 new replicas have been updated...
|
||||||
error: deployment "nginx" exceeded its progress deadline
|
error: deployment "nginx" exceeded its progress deadline
|
||||||
|
|||||||
Reference in New Issue
Block a user