Fix missing region in health check creation

health check creation was missing a region flag
pull/170/head
Brian Ketelsen 2017-05-19 13:58:21 -07:00 committed by GitHub
parent 1c53942442
commit 0e4dde47f2
1 changed files with 2 additions and 1 deletions

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