From fb394d60dee93470b8aa24774f63b765632e2bfc Mon Sep 17 00:00:00 2001 From: chenhuan12 Date: Mon, 17 Apr 2017 13:14:27 +0800 Subject: [PATCH] fix the command output (#3405) * fix the command output fix kubectl get nodes output * Update manual.md --- docs/getting-started-guides/ubuntu/manual.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting-started-guides/ubuntu/manual.md b/docs/getting-started-guides/ubuntu/manual.md index 0e08bd2c26..cc074301a6 100644 --- a/docs/getting-started-guides/ubuntu/manual.md +++ b/docs/getting-started-guides/ubuntu/manual.md @@ -164,10 +164,10 @@ For example, use `$ kubectl get nodes` to see if all of your nodes are ready. ```shell $ kubectl get nodes -NAME LABELS STATUS -10.10.103.162 kubernetes.io/hostname=10.10.103.162 Ready -10.10.103.223 kubernetes.io/hostname=10.10.103.223 Ready -10.10.103.250 kubernetes.io/hostname=10.10.103.250 Ready +NAME STATUS AGE VERSION +10.10.103.162 Ready 3d v1.6.0+fff5156 +10.10.103.223 Ready 3d v1.6.0+fff5156 +10.10.103.250 Ready 3d v1.6.0+fff5156 ``` Also you can run Kubernetes [guest-example](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples/guestbook/) to build a redis backend cluster.