Make cluster creation command copy-pasteable (#170)

The comments inline with the GKE cluster creation command cause a problem when copy and pasting.  Moving them to comments below.
This commit is contained in:
Joseph Burnett 2018-02-14 15:12:35 -08:00 committed by Grant Rodgers
parent 186f5783ce
commit 4f3742581b
1 changed files with 6 additions and 5 deletions

View File

@ -27,17 +27,18 @@ To use a k8s cluster running in GKE:
```shell
gcloud --project=$PROJECT_ID container clusters create \
# Version 1.9+ is required
--cluster-version=1.9.2-gke.1 \
# Change this to whichever zone you choose
--zone=us-east1-d \
# cloud-platform scope is required to access GCB
--scopes=cloud-platform \
# Autoscale from 1 to 3 nodes. Adjust this for your use case
--enable-autoscaling --min-nodes=1 --max-nodes=3 \
# Change this to your preferred cluster name
elafros-demo
```
- Version 1.9+ is required
- Change this to whichever zone you choose
- cloud-platform scope is required to access GCB
- Autoscale from 1 to 3 nodes. Adjust this for your use case
- Change this to your preferred cluster name
You can see the list of supported cluster versions in a particular zone
by running: