mirror of https://github.com/dapr/docs.git
parent
a5891f6269
commit
20a43f33b7
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue