Merge pull request #30616 from fenggw-fnst/fix-command-output

[zh] Fix the output of "kubectl get deployment"
This commit is contained in:
Kubernetes Prow Robot 2021-11-28 21:09:22 -08:00 committed by GitHub
commit 457eb7b61d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -366,8 +366,8 @@ kubectl:
kubectl get deployment nginx-app kubectl get deployment nginx-app
``` ```
``` ```
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE NAME READY UP-TO-DATE AVAILABLE AGE
nginx-app 1 1 1 1 2m nginx-app 1/1 1 1 2m
``` ```
```shell ```shell

View File

@ -354,8 +354,8 @@ We have created a deployment whose replica size is 2 that is running the pod cal
kubectl get deployment kubectl get deployment
``` ```
``` ```
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE NAME READY UP-TO-DATE AVAILABLE AGE
snowflake 2 2 2 2 2m snowflake 2/2 2 2 2m
``` ```
```shell ```shell
@ -402,8 +402,8 @@ kubectl get deployment
``` ```
``` ```
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE NAME READY UP-TO-DATE AVAILABLE AGE
cattle 5 5 5 5 10s cattle 5/5 5 5 10s
``` ```
```shell ```shell