(feat/docs): Add Helm 3 installation details (#277)

* (feat/docs): Add Helm 3 installation details

Signed-off-by: Lachlan Evenson <lachlan.evenson@microsoft.com>

* Add Helm 3 uninstall command

Signed-off-by: Lachlan Evenson <lachlan.evenson@microsoft.com>

* Use Helm 3 uninstall command

Signed-off-by: Lachlan Evenson <lachlan.evenson@microsoft.com>
This commit is contained in:
Lachlan Evenson 2019-12-13 14:02:26 -08:00 committed by Yaron Schneider
parent 65c08a807d
commit 430eb48338
2 changed files with 23 additions and 3 deletions

View File

@ -42,9 +42,15 @@ az aks create --resource-group [your_resource_group] --name [your_aks_cluster_na
az aks get-credentials -n [your_aks_cluster_name] -g [your_resource_group]
```
## (optional) Install Helm and deploy Tiller
## (optional) Install Helm
1. [Install Helm client](https://helm.sh/docs/using_helm/#installing-the-helm-client)
### Helm 3 installation (prefered)
1. [Install Helm 3 client](https://helm.sh/docs/intro/install/)
### Helm 2 installation
1. [Install Helm 2 client](https://v2.helm.sh/docs/using_helm/#installing-helm)
2. Create the Tiller service account
```bash

View File

@ -153,8 +153,16 @@ helm repo add dapr https://daprio.azurecr.io/helm/v1/repo
helm repo update
```
3. Install the Dapr chart on your cluster in the `dapr-system` namespace
3. Install the Dapr chart on your cluster in the `dapr-system` namespace.
Helm 3 is the latest stable major release and is preferred. The installation command differs slightly between Helm 2 and Helm 3. You can determine the version of Helm you are using by running the `helm version` command.
Use the following command to install the dapr chart using Helm 3.
```bash
helm install dapr dapr/dapr --namespace dapr-system
```
Use the following command to install the dapr chart using Helm 2.
```bash
helm install dapr/dapr --name dapr --namespace dapr-system
```
@ -174,6 +182,12 @@ dapr-sidecar-injector-8555576b6f-29cqm 1/1 Running 0 40s
#### Uninstall Dapr on Kubernetes
Helm 3
```bash
helm uninstall dapr -n dapr-system
```
Helm 2
```bash
helm del --purge -n dapr
```