From fc36cb9c12cfdda526b33d81b60e9144efb901bd Mon Sep 17 00:00:00 2001 From: lostlivio Date: Fri, 1 Sep 2017 18:10:14 -0700 Subject: [PATCH] Update var name to be consistent with other lab steps. --- docs/08-bootstrapping-kubernetes-controllers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/08-bootstrapping-kubernetes-controllers.md b/docs/08-bootstrapping-kubernetes-controllers.md index db64cca..22c70e8 100644 --- a/docs/08-bootstrapping-kubernetes-controllers.md +++ b/docs/08-bootstrapping-kubernetes-controllers.md @@ -235,7 +235,7 @@ gcloud compute forwarding-rules create kubernetes-forwarding-rule \ Retrieve the `kubernetes-the-hard-way` static IP address: ``` -KUBERNETES_PUBLIC_IP_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) \ --format 'value(address)') ``` @@ -243,7 +243,7 @@ KUBERNETES_PUBLIC_IP_ADDRESS=$(gcloud compute addresses describe kubernetes-the- Make a HTTP request for the Kubernetes version info: ``` -curl --cacert ca.pem https://${KUBERNETES_PUBLIC_IP_ADDRESS}:6443/version +curl --cacert ca.pem https://${KUBERNETES_PUBLIC_ADDRESS}:6443/version ``` > output