Update 05-kubernetes-controller.md

Unless the region is explicitly passed, I get the error:
```
ERROR: (gcloud.compute.target-pools.create) Some requests did not succeed:
 - Invalid value for field 'region': 'us-central1-b'. Unknown region.
```
pull/176/head
Tennis Smith 2017-05-03 13:48:05 -05:00 committed by Kelsey Hightower
parent 2983b28f13
commit bf66a60585
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
```
```