From 769d5483a2eaf5fe71d06baf56bacb47e8c3ce68 Mon Sep 17 00:00:00 2001 From: Joe Intrakamhang Date: Tue, 20 Sep 2016 10:42:34 -0500 Subject: [PATCH] Add config/zone cmds to the doc --- docs/01-infrastructure-gcp.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/01-infrastructure-gcp.md b/docs/01-infrastructure-gcp.md index 34d5a04..4c890d0 100644 --- a/docs/01-infrastructure-gcp.md +++ b/docs/01-infrastructure-gcp.md @@ -36,6 +36,17 @@ To make our Kubernetes control plane remotely accessible, a public IP address wi ## Networking +Set the region and zone to us-central1: + +``` +gcloud config set compute/region us-central1 +``` + +``` +gcloud config set compute/zone us-central1-f +``` +Create a Kubernetes network: + ``` gcloud compute networks create kubernetes --mode custom ```