I validated each command and the result of the `KUBERNETES_PUBLIC_ADDRESS` looked wrong.

I'd not remove the second variable export for `KUBERNETES_PUBLIC_ADDRESS`, if something is debugging something he might accidentally try the validation in a new shell and forget about the export.
pull/233/head
Patrick Gerken 2017-10-09 19:23:40 +02:00 committed by GitHub
parent e8d728d016
commit 723f1f9050
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 \ 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)')
``` ```
``` ```