From 8913c8664d878c60bb55316b91b134066544b90d Mon Sep 17 00:00:00 2001 From: johndmulhausen Date: Fri, 25 Mar 2016 15:54:38 -0700 Subject: [PATCH] Update hellonode.md --- docs/hellonode.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/hellonode.md b/docs/hellonode.md index ddf870fa37..e6b3a3f0ee 100755 --- a/docs/hellonode.md +++ b/docs/hellonode.md @@ -30,6 +30,16 @@ New users of Google Cloud Platform recieve a [$300 free trial](https://console.d Next, make sure you [download Node.js](https://nodejs.org/en/download/). +Then install [Docker](https://docs.docker.com/engine/installation/), and [Google Cloud SDK](https://cloud.google.com/sdk/). + +Finally, after Google Cloud SDK installs, run the following command to install [`kubectl`](http://kubernetes.io/docs/user-guide/kubectl-overview/): + +```shell +gcloud components install kubectl +``` + +You're all set up with an environment that can build container images, run Node apps, run Kubernetes clusters locally, and deploy Kubernetes clusters to Google Container Engine. Let's begin! + ## Create your Node.js application The first step is to write the application. Save this code in a folder called "`hellonode/`" with the filename `server.js`: