From 88236f73c3202c411f5a0c700c06263d1bd9831c Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 24 Mar 2016 12:09:55 -0700 Subject: [PATCH] remove trailing paren --- docs/hellonode.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/hellonode.md b/docs/hellonode.md index 784609a3cb..20b21dc798 100755 --- a/docs/hellonode.md +++ b/docs/hellonode.md @@ -133,9 +133,7 @@ A kubernetes **[pod](/docs/user-guide/pods/)** is a group of containers, tied to Create a pod with the `kubectl run` command: ```shell -kubectl run hello-node \ - --image=gcr.io/PROJECT_ID/hello-node:v1 \ - --port=8080 +kubectl run hello-node --image=gcr.io/PROJECT_ID/hello-node:v1 --port=8080 deployment "hello-node" created ``` @@ -181,7 +179,7 @@ To view the kubectl configuration run: kubectl config view ``` -Full documentation for kubectl commands is available [here](https://cloud.google.com/container-engine/docs/kubectl/)): +Full documentation for kubectl commands is available **[here](https://cloud.google.com/container-engine/docs/kubectl/)**: At this point you should have our container running under the control of Kubernetes but we still have to make it accessible to the outside world.