updating versions to v1.3

This commit is contained in:
Ori Zohar 2021-07-21 09:41:38 -07:00
parent e633d5db05
commit a0301fa80b
3 changed files with 9 additions and 9 deletions

View File

@ -52,8 +52,8 @@ dapr --version
Output should look like this: Output should look like this:
``` ```
CLI version: 1.2.0 CLI version: 1.3.0
Runtime version: 1.2.0 Runtime version: 1.3.0
``` ```
### Step 4: Verify containers are running ### Step 4: Verify containers are running

View File

@ -11,15 +11,15 @@ description: "Follow these steps to upgrade Dapr on Kubernetes and ensure a smoo
- [Dapr CLI]({{< ref install-dapr-cli.md >}}) - [Dapr CLI]({{< ref install-dapr-cli.md >}})
- [Helm 3](https://github.com/helm/helm/releases) (if using Helm) - [Helm 3](https://github.com/helm/helm/releases) (if using Helm)
## Upgrade existing cluster to 1.2.0 ## Upgrade existing cluster to 1.3.0
There are two ways to upgrade the Dapr control plane on a Kubernetes cluster using either the Dapr CLI or Helm. There are two ways to upgrade the Dapr control plane on a Kubernetes cluster using either the Dapr CLI or Helm.
### Dapr CLI ### Dapr CLI
The example below shows how to upgrade to version 1.2.0: The example below shows how to upgrade to version 1.3.0:
```bash ```bash
dapr upgrade -k --runtime-version=1.2.0 dapr upgrade -k --runtime-version=1.3.0
``` ```
You can provide all the available Helm chart configurations using the Dapr CLI. You can provide all the available Helm chart configurations using the Dapr CLI.
@ -43,7 +43,7 @@ To resolve this issue please run the follow command to upgrade the CustomResourc
kubectl replace -f https://raw.githubusercontent.com/dapr/dapr/5a15b3e0f093d2d0938b12f144c7047474a290fe/charts/dapr/crds/configuration.yaml kubectl replace -f https://raw.githubusercontent.com/dapr/dapr/5a15b3e0f093d2d0938b12f144c7047474a290fe/charts/dapr/crds/configuration.yaml
``` ```
Then proceed with the `dapr upgrade --runtime-version 1.2.0 -k` command as above. Then proceed with the `dapr upgrade --runtime-version 1.3.0 -k` command as above.
### Helm ### Helm

View File

@ -25,11 +25,11 @@ description: "Follow these steps to upgrade Dapr in self-hosted mode and ensure
dapr init dapr init
``` ```
1. Ensure you are using the latest version of Dapr (v1.2) with: 1. Ensure you are using the latest version of Dapr (v1.3) with:
```bash ```bash
$ dapr --version $ dapr --version
CLI version: 1.2 CLI version: 1.3
Runtime version: 1.2 Runtime version: 1.3
``` ```