diff --git a/10.1-Deploying-to-Kubernetes-(AKS-and-local)-using-Helm-Charts.md b/10.1-Deploying-to-Kubernetes-(AKS-and-local)-using-Helm-Charts.md index c9ebf07..6aac04a 100644 --- a/10.1-Deploying-to-Kubernetes-(AKS-and-local)-using-Helm-Charts.md +++ b/10.1-Deploying-to-Kubernetes-(AKS-and-local)-using-Helm-Charts.md @@ -27,11 +27,16 @@ The following steps are using the Azure portal to create the AKS cluster: ![image](https://user-images.githubusercontent.com/1712635/45781148-1277a980-bc14-11e8-8614-f7a239731bec.png) -- Finally, in order NOT to get errors in the Kubernetes dashboard like the following, you'll need to set the following service-account steps. +- Finally, create the cluster. It'll take a few minutes for it to be ready. +### Configure RBAC security for K8s dashboard service-account + +In order NOT to get errors in the Kubernetes dashboard, you'll need to set the following service-account steps. + +Here you can see the errors you might see: ![image](https://user-images.githubusercontent.com/1712635/45784384-5622e100-bc1d-11e8-8d33-e22fd955150a.png) -- Because the cluster is using RBAC, you need to grant needed rights to the Service Account `kubernetes-dashboard`: +- Because the cluster is using RBAC, you need to grant needed rights to the Service Account `kubernetes-dashboard` with this kubectl command: `kubectl create clusterrolebinding kubernetes-dashboard -n kube-system --clusterrole=cluster-admin --serviceaccount=kube-system:kubernetes-dashboard`