From 8db28adc74350165d6a657de1c6f9e9e856b5fdc Mon Sep 17 00:00:00 2001 From: Shriram Rajagopalan Date: Tue, 16 May 2017 12:12:18 -0400 Subject: [PATCH] describe how to setup kubeconfig for bluemix --- _docs/tasks/installing-istio.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/_docs/tasks/installing-istio.md b/_docs/tasks/installing-istio.md index ed67b6fdaf..c73a1d6d48 100644 --- a/_docs/tasks/installing-istio.md +++ b/_docs/tasks/installing-istio.md @@ -22,11 +22,17 @@ This page shows how to install and configure Istio in a Kubernetes cluster. ```bash gcloud config set container/use_client_certificate True ``` - Find out your cluster name and zone, and fetch credentials: + Find out your cluster name and zone, and fetch credentials for kubectl: ```bash gcloud container clusters get-credentials --zone --project ``` +* If you are using [IBM Bluemix Container Service](https://www.ibm.com/cloud-computing/bluemix/containers), find out your cluster name, and fetch credentials for kubectl: + + ```bash + $(bx cs cluster-config |grep "export KUBECONFIG") + ``` + * Install the Kubernetes client [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/), or upgrade to the latest version supported by your cluster.