From d3a247045f38b61d0c30a7b2b7f4e5c6d08b692d Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Thu, 17 May 2018 15:35:12 -0700 Subject: [PATCH] Updated 10. Setting the solution up in AKS (Azure Kubernetes Service) (markdown) --- ...on-up-in-AKS-(Azure-Kubernetes-Service).md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/10.-Setting-the-solution-up-in-AKS-(Azure-Kubernetes-Service).md b/10.-Setting-the-solution-up-in-AKS-(Azure-Kubernetes-Service).md index 94483ce..16f2de1 100644 --- a/10.-Setting-the-solution-up-in-AKS-(Azure-Kubernetes-Service).md +++ b/10.-Setting-the-solution-up-in-AKS-(Azure-Kubernetes-Service).md @@ -88,10 +88,38 @@ After a successful execution you can check the AKS Kubernetes cluster in Azure p ![image](https://user-images.githubusercontent.com/1712635/40206473-10327e02-59e5-11e8-90d6-d1fcfaa9b4a4.png) +### Important: Keep your credentials/secrets for AKS, Kubernetes and ACR +# Check your Kubernetes Cluster Dashboard +To open your Kubernetes dashboard, complete the following steps: + +* Open Azure CLI version 2.0.27 or later in PowerShell or CommandLine window. This will not work in cloud shell and must be running on your local machine. + +* If you do not already have `kubectl` installed in your CLI, run the following command: + +>``` +>az aks install-cli +>``` + +* Get the credentials for your cluster by running the following command: + +>``` +>az aks get-credentials --resource-group YoureShopAksResgroup --name YoureShopAksCluster +>``` + +* Open the Kubernetes dashboard by running the following command: + +>``` +>az aks browse --resource-group YoureShopAksResgroup --name YoureShopAksCluster +>``` + +You should see the Kubernetes dashboard, similar to the following screenshot: + + +XXXXXXXXXXXXXXXXXXXXXXXXXXXXX # Deploy the eShopOnContainers application into the Kuberentes cluster with the deployment script