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 ```