Fixed KUBERNETES_PUBLIC_ADDRESS gcloud output

in module 8 during load balancer setup, gcloud format incorrectly specified --format 'value(name)' instead of --format 'value(address)'
pull/299/head
Blue Thunder Somogyi 2018-01-21 09:09:35 -05:00 committed by GitHub
parent 63ff9932d9
commit f04619e0b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ gcloud compute target-pools add-instances kubernetes-target-pool \
```
KUBERNETES_PUBLIC_ADDRESS=$(gcloud compute addresses describe kubernetes-the-hard-way \
--region $(gcloud config get-value compute/region) \
--format 'value(name)')
--format 'value(address)')
```
```