typo: it should get the IP address and not the name of the external address

This commit is contained in:
Tulio De Souza
2017-10-18 10:50:31 +01:00
parent 7ef9f73e10
commit 1343c7b04d

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 \ KUBERNETES_PUBLIC_ADDRESS=$(gcloud compute addresses describe kubernetes-the-hard-way \
--region $(gcloud config get-value compute/region) \ --region $(gcloud config get-value compute/region) \
--format 'value(name)') --format 'value(address)')
``` ```
``` ```