From e1ae22a5eb8bed5da4069ffed36b5f3de7138df0 Mon Sep 17 00:00:00 2001 From: Nathan Anderson Date: Thu, 14 Jul 2016 09:53:46 -0400 Subject: [PATCH] Provide region when creating Public IP Address This avoids the prompt for region and follows the precedent set by the subnet creation --- docs/01-infrastructure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01-infrastructure.md b/docs/01-infrastructure.md index e93cf75..4f06db1 100644 --- a/docs/01-infrastructure.md +++ b/docs/01-infrastructure.md @@ -116,7 +116,7 @@ kubernetes-allow-ssh kubernetes 0.0.0.0/0 tcp:22 Create a public IP address that will be used by remote clients to connect to the Kubernetes control plane: ``` -gcloud compute addresses create kubernetes +gcloud compute addresses create kubernetes --region=us-central1 ``` ```