From 723f1f9050fe2596c5ada4b766ecbf84eacf7cd4 Mon Sep 17 00:00:00 2001 From: Patrick Gerken Date: Mon, 9 Oct 2017 19:23:40 +0200 Subject: [PATCH] Fix typo 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. --- docs/08-bootstrapping-kubernetes-controllers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/08-bootstrapping-kubernetes-controllers.md b/docs/08-bootstrapping-kubernetes-controllers.md index b526bbc..d20cce3 100644 --- a/docs/08-bootstrapping-kubernetes-controllers.md +++ b/docs/08-bootstrapping-kubernetes-controllers.md @@ -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)') ``` ```