change kubectl get deployment output (#17351)

This commit is contained in:
Luzhenxing
2019-11-02 12:31:40 +08:00
committed by Kubernetes Prow Robot
parent 4c48c963a0
commit 3aab039ac4
6 changed files with 18 additions and 18 deletions
@@ -235,8 +235,8 @@ If you want to obtain the old behavior, use `--generator=run/v1` to create repli
kubectl get deployment
```
```
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
snowflake 2 2 2 2 2m
NAME READY UP-TO-DATE AVAILABLE AGE
snowflake 2/2 2 2 2m
```
```shell
@@ -271,8 +271,8 @@ kubectl run cattle --image=k8s.gcr.io/serve_hostname --replicas=5
kubectl get deployment
```
```
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
cattle 5 5 5 5 10s
NAME READY UP-TO-DATE AVAILABLE AGE
cattle 5/5 5 5 10s
```
```shell