mirror of https://github.com/dapr/docs.git
Merge branch 'v1.0' into observability-concept
This commit is contained in:
commit
a16df9267b
|
@ -74,7 +74,7 @@ dapr init -k -n mynamespace
|
||||||
|
|
||||||
### Install in highly available mode:
|
### Install in highly available mode:
|
||||||
|
|
||||||
You can run Dapr with 3 replicas of each control plane pod with the exception of the Placement pod in the dapr-system namespace for [production scenarios]({{< ref kubernetes-production.md >}}).
|
You can run Dapr with 3 replicas of each control plane pod in the dapr-system namespace for [production scenarios]({{< ref kubernetes-production.md >}}).
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dapr init -k --enable-ha=true
|
dapr init -k --enable-ha=true
|
||||||
|
@ -129,6 +129,18 @@ The latest Dapr helm chart no longer supports Helm v2. Please migrate from Helm
|
||||||
--wait
|
--wait
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To install in high availability mode:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm upgrade --install dapr dapr/dapr \
|
||||||
|
--version=1.0.0 \
|
||||||
|
--namespace dapr-system \
|
||||||
|
--create-namespace \
|
||||||
|
--set global.ha.enabled=true \
|
||||||
|
--wait
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
See [Guidelines for production ready deployments on Kubernetes]({{<ref kubernetes-production.md>}}) for more information on installing and upgrading Dapr using Helm.
|
See [Guidelines for production ready deployments on Kubernetes]({{<ref kubernetes-production.md>}}) for more information on installing and upgrading Dapr using Helm.
|
||||||
|
|
||||||
### Verify installation
|
### Verify installation
|
||||||
|
|
Loading…
Reference in New Issue