From e70698d0ac85b085d1df69bfce01e19035923519 Mon Sep 17 00:00:00 2001 From: Yaron Schneider Date: Mon, 15 Feb 2021 11:53:41 -0800 Subject: [PATCH] update kubernetes deploy/upgrade details (#1220) --- .../hosting/kubernetes/kubernetes-deploy.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md b/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md index be439f611..0a83ac6ac 100644 --- a/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md +++ b/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md @@ -74,7 +74,7 @@ dapr init -k -n mynamespace ### 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 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 ``` +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]({{}}) for more information on installing and upgrading Dapr using Helm. ### Verify installation