Updated 10.1 Deploying to Kubernetes (AKS and local) using Helm Charts (markdown)

Eduard Tomàs 2018-08-02 16:14:42 +02:00
parent 968f76d9be
commit 1c86090960

@ -10,7 +10,7 @@ Despite an AKS created and kubectl and Azure CLI installed and configured to use
You need to have helm installed on your machine, and Tiller must be installed on the AKS. Follow [these instructions](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/aks/kubernetes-helm.md) to setup Helm and Tiller for AKS
**Note** If your ASK cluster is not RBAC-enabled (default option in portal) you may receive following error when running a helm command:
**Note**: If your ASK cluster is not RBAC-enabled (default option in portal) you may receive following error when running a helm command:
```
Error: Get http://localhost:8080/api/v1/namespaces/kube-system/configmaps?labelSelector=OWNER%!D(MISSING)TILLER: dial tcp [::1]:8080: connect: connection refused
@ -31,7 +31,7 @@ automountServiceAccountToken: false
And change it to:
```
automountServiceAccountToken: false
automountServiceAccountToken: true
```
Save the file and close the editor. This should reapply the deployment in the cluster. Now Helm commands should work.