Fix getting started (#60)

* fix helm repo

* Add note for k8s 1.16
This commit is contained in:
Young Bu Park 2019-10-04 18:16:08 -07:00 committed by GitHub
parent a5891f6269
commit 20a43f33b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View File

@ -30,6 +30,8 @@ az group create --name [your_resource_group] --location [region]
4. Create an Azure Kubernetes Service cluster
Use 1.13.x or newer version of Kubernetes with `--kubernetes-version`
> **Note:** [1.16.x Kubernetes doesn't work with helm < 2.15.0](https://github.com/helm/helm/issues/6374#issuecomment-537185486)
```bash
az aks create --resource-group [your_resource_group] --name [your_aks_cluster_name] --node-count 2 --kubernetes-version 1.14.6 --enable-addons http_application_routing --enable-rbac --generate-ssh-keys
```

View File

@ -22,6 +22,8 @@ minikube config set vm-driver [driver_name]
2. Start the cluster
Use 1.13.x or newer version of Kubernetes with `--kubernetes-version`
> **Note:** [1.16.x Kubernetes doesn't work with helm < 2.15.0](https://github.com/helm/helm/issues/6374#issuecomment-537185486)
```bash
minikube start --cpus=4 --memory=4096 --kubernetes-version=1.14.6 --extra-config=apiserver.authorization-mode=RBAC
```

View File

@ -100,7 +100,7 @@ helm repo add dapr https://actionscore.azurecr.io/helm/v1/repo \
3. Install the Dapr chart on your cluster in the `dapr-system` namespace
```bash
helm install actionscore/dapr-operator --name dapr --namespace dapr-system
helm install dapr/dapr-operator --name dapr --namespace dapr-system
```
#### Verify installation