fix typo deployment page (#13694)

Associated with #13693
This commit is contained in:
Shashank Patel 2019-04-09 05:09:03 +05:30 committed by Kubernetes Prow Robot
parent adc61ddd79
commit a08f7c0714
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ In a future version of Kubernetes, the defaults will change from 1-1 to 25%-25%.
For example, if you look at the above Deployment closely, you will see that it first created a new Pod,
then deleted some old Pods and created new ones. It does not kill old Pods until a sufficient number of
new Pods have come up, and does not create new Pods until a sufficient number of old Pods have been killed.
It makes sure that number of available Pods is at least 2 and the number of total Pods is at most 4.
It makes sure that the number of available Pods is at least 2 and the number of total Pods is at most 4.
```shell
$ kubectl describe deployments