From d9bf59ba63ce9948b7395f62ae393792562f5d32 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Thu, 25 May 2017 20:25:39 -0700 Subject: [PATCH] Updated 10. Setting the solution up in ACS Kubernetes (markdown) --- 10.-Setting-the-solution-up-in-ACS-Kubernetes.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/10.-Setting-the-solution-up-in-ACS-Kubernetes.md b/10.-Setting-the-solution-up-in-ACS-Kubernetes.md index 7d62582..73b4723 100644 --- a/10.-Setting-the-solution-up-in-ACS-Kubernetes.md +++ b/10.-Setting-the-solution-up-in-ACS-Kubernetes.md @@ -215,11 +215,19 @@ eshop-autogen-k8s-dns.westus.cloudapp.azure.com

-4. **Install the Kubernetes command line client**, `kubectl`. - * You can install `kubectl` with `az acs kubernetes install-cli` as in the following screenshot (use 'sudo' if in a Mac or Linux). (You can also download it from the [Kubernetes site](https://kubernetes.io/docs/tasks/tools/install-kubectl/)) - +## Connect to a Kubernetes cluster in ACS (Azure Container Service) +1. **Make sure you have the private keys to connect. + * TBD + +2. **Install the Kubernetes command line client**, `kubectl`. + * `kubectl` is the Kubernetes command line client. If you don't already have it installed, you can install it with: + `az acs kubernetes install-cli` + as in the following screenshot (use 'sudo' if in a Mac or Linux). + By default, this command installs the `kubectl` binary to `C:\Program Files (x86)\kubectl.exe` on Windows or to `/usr/local/bin/kubectl` on a Linux or macOS system. To specify a different installation path, use the `--install-location` parameter. - After `kubectl` is installed, add its directory in your system path. MAke sure you access to its path by typing `kubectl version` as in the following screenshot: + You can also download it from the [Kubernetes site](https://kubernetes.io/docs/tasks/tools/install-kubectl/) + +3. After `kubectl` is installed, add its directory in your system path. Make sure you access to its path by typing `kubectl version` as in the following screenshot: * For further info about `az` tool and Kubernetes see the Azure Container Service [walkthrough](https://docs.microsoft.com/en-us/azure/container-service/container-service-kubernetes-walkthrough).