Skip to content

Commit

Permalink
docs: Few tweaks to how cluster zone is set
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com>
  • Loading branch information
errordeveloper authored and joestringer committed Mar 12, 2020
1 parent 51b3a05 commit 3c0e015
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Documentation/gettingstarted/k8s-install-gke.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ Create a GKE Cluster

You can apply any method to create a GKE cluster. The example given here is
using the `Google Cloud SDK <https://cloud.google.com/sdk/>`_. This guide
will create a cluster on zone ``europe-west4-a``; feel free to change the zone
if you are in a different region of the globe.
will create a single-zone cluster in ``europe-west4-a``; feel free to change
the zone to one that is closer to where you are. You can create a regional
cluster with ``--region europe-west4`` also.

.. code:: bash
export GKE_ZONE="europe-west4-a"
gcloud container --project $GKE_PROJECT clusters create cluster1 \
--username admin --image-type COS --num-nodes 2 --zone ${GKE_ZONE}
--username admin --image-type COS --num-nodes 2 --zone europe-west4-a
When done, you should be able to access your cluster like this:

Expand Down

0 comments on commit 3c0e015

Please sign in to comment.