Skip to content

Commit

Permalink
Fix deployment.md with wrong READY numbers
Browse files Browse the repository at this point in the history
The status of READY number should be 2 instead of 0, described
in the first line of table
  • Loading branch information
caishan2018 committed Jul 19, 2018
1 parent 08d06e0 commit 29b1e29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/en/docs/concepts/workloads/controllers/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ nginx-deployment-2035384211) and new replicas (nginx-deployment-3066724191) are
```shell
$ kubectl get rs
NAME DESIRED CURRENT READY AGE
nginx-deployment-1564180365 2 2 0 25s
nginx-deployment-1564180365 2 2 2 25s
nginx-deployment-2035384211 0 0 0 36s
nginx-deployment-3066724191 2 2 2 6s
nginx-deployment-3066724191 2 2 0 6s
```

Looking at the Pods created, you will see that the 2 Pods created by new ReplicaSet are stuck in an image pull loop.
Expand Down

0 comments on commit 29b1e29

Please sign in to comment.