From 5d8a0441ac7cfd84b0efb0fd452849dae1833fab 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 6e0eed0..0f2e48a 100644 --- a/docs/01-infrastructure-gcp.md +++ b/docs/01-infrastructure-gcp.md @@ -24,6 +24,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 ```