@@ -12,7 +12,7 @@ Setting up a cluster is as simple as running:
...
@@ -12,7 +12,7 @@ Setting up a cluster is as simple as running:
```
```
export KUBERNETES_PROVIDER=vagrant
export KUBERNETES_PROVIDER=vagrant
curl -sS https://get.k8s.io | sh
curl -sS https://get.k8s.io | bash
```
```
The `KUBERNETES_PROVIDER` environment variable tells all of the various cluster management scripts which variant to use. If you forget to set this, the assumption is you are running on Google Compute Engine.
The `KUBERNETES_PROVIDER` environment variable tells all of the various cluster management scripts which variant to use. If you forget to set this, the assumption is you are running on Google Compute Engine.
@@ -24,11 +24,11 @@ gcloud config set project <project-name>
...
@@ -24,11 +24,11 @@ gcloud config set project <project-name>
Next, grab the Kubernetes [release binary](https://github.com/GoogleCloudPlatform/kubernetes/releases). You can do this via:
Next, grab the Kubernetes [release binary](https://github.com/GoogleCloudPlatform/kubernetes/releases). You can do this via:
```shell
```shell
wget -q-O - https://get.k8s.io | sh
wget -q-O - https://get.k8s.io | bash
```
```
or
or
```shell
```shell
curl -sS https://get.k8s.io | sh
curl -sS https://get.k8s.io | bash
```
```
Then, start up a Kubernetes cluster as [described here](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-started-guides/gce.md).
Then, start up a Kubernetes cluster as [described here](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-started-guides/gce.md).