From addf5496036ac7820222fb3ae2b80adf975eaffc Mon Sep 17 00:00:00 2001 From: Arne-Christian Blystad Date: Thu, 20 Apr 2017 11:28:29 +0200 Subject: [PATCH] docs(gke/boot): Add info on obtaining credentials When installing gcloud and kubectl using apt-get the user needs to download the credentials. (At least that was the case for me). --- src/quickstart/provider/gke/boot.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/quickstart/provider/gke/boot.md b/src/quickstart/provider/gke/boot.md index 48b11b064..4a068a871 100644 --- a/src/quickstart/provider/gke/boot.md +++ b/src/quickstart/provider/gke/boot.md @@ -100,5 +100,16 @@ KubeDNS is running at https://104.154.234.246/api/v1/proxy/namespaces/kube-syste kubernetes-dashboard is running at https://104.154.234.246/api/v1/proxy/namespaces/kube-system/services/kubernetes-dashboard ``` +If `kubectl cluster-info` returned with the following error: +``` +The connection to the server localhost:8080 was refused - did you specify the right host or port? +``` + +You'll need to run: + + $ gcloud container clusters get-credentials + +To download the credentials necessary. The `kubectl cluster-info` command should then work as intended. + You are now ready to [install Deis Workflow](install-gke.md)