Fix missing region in health check creation

health check creation was missing a region flag
This commit is contained in:
Brian Ketelsen
2017-05-19 13:58:21 -07:00
committed by GitHub
parent 1c53942442
commit 0e4dde47f2

View File

@@ -286,7 +286,8 @@ gcloud compute http-health-checks create kube-apiserver-health-check \
```
gcloud compute target-pools create kubernetes-target-pool \
--http-health-check=kube-apiserver-health-check
--http-health-check=kube-apiserver-health-check \
--region us-central1
```
```