Update the K8s upgrade docs

This commit is contained in:
Mark Fussell 2021-02-02 09:35:04 -08:00
parent e256f47b9a
commit cdc4a67ca2
2 changed files with 15 additions and 2 deletions

View File

@ -95,6 +95,9 @@ dapr init -k --enable-mtls=false --runtime-version 1.0.0-rc.3
dapr uninstall --kubernetes
```
### Upgrade Dapr on a cluster
To upgrade Dapr on a Kubernetes cluster you can use the CLI. See [upgrade Kubernetes]({{< ref kubernetes-upgrade.md >}}) for more information.
## Install with Helm (advanced)
You can install Dapr on Kubernetes using a Helm 3 chart.

View File

@ -8,10 +8,20 @@ description: "Follow these steps to upgrade Dapr on Kubernetes and ensure a smoo
## Prerequisites
- [Helm 3](https://github.com/helm/helm/releases)
- [Dapr CLI]({{< ref install-dapr-cli.md >}}))
- [Helm 3](https://github.com/helm/helm/releases) (if using Helm)
## Upgrade existing cluster to 1.0.0 / 1.0.0-rc.3
There are two ways to upgrade the Dapr control plane on a Kubernetes cluster using either the Dapr CLI or Helm. The preferred way is to use the Dapr CLI
### Dapr CLI
The example below shows how to upgrade to version 1.0.0-rc.3
```bash
dapr upgrade -k --runtime-version=1.0.0-rc.3
```
### Helm
From version 1.0.0-rc.3 onwards, upgrading Dapr using Helm is no longer a disruptive action since existing certificate values will automatically be re-used.
1. Upgrade Dapr from 1.0.0-rc.1 (or newer) to 1.0.0-rc.3 (or newer):