From c35d9716dc21c9f7ee8b7f0f34ab97e4d612d440 Mon Sep 17 00:00:00 2001 From: Ash Wu Date: Thu, 12 Nov 2015 16:28:55 +0800 Subject: [PATCH] Fix wrong terminal output for vagrant.md According to the description below `We did not start any services, hence there are none listed. But we see three replicas displayed properly.` The original terminal output example was wrong and misleading. --- docs/getting-started-guides/vagrant.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/getting-started-guides/vagrant.md b/docs/getting-started-guides/vagrant.md index ceb69d02a40..63257305b14 100644 --- a/docs/getting-started-guides/vagrant.md +++ b/docs/getting-started-guides/vagrant.md @@ -284,7 +284,10 @@ my-nginx-xql4j 1/1 Running 0 1m $ ./cluster/kubectl.sh get services NAME CLUSTER_IP EXTERNAL_IP PORT(S) SELECTOR AGE -my-nginx 10.0.0.1 80/TCP run=my-nginx 1h + +$ ./cluster/kubectl.sh get replicationcontrollers +CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS AGE +my-nginx my-nginx nginx run=my-nginx 3 1m ``` We did not start any services, hence there are none listed. But we see three replicas displayed properly.