From a0301fa80b2c859ff22cebfaf76f0781a641cb24 Mon Sep 17 00:00:00 2001 From: Ori Zohar Date: Wed, 21 Jul 2021 09:41:38 -0700 Subject: [PATCH] updating versions to v1.3 --- .../content/en/getting-started/install-dapr-selfhost.md | 4 ++-- .../operations/hosting/kubernetes/kubernetes-upgrade.md | 8 ++++---- .../operations/hosting/self-hosted/self-hosted-upgrade.md | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-selfhost.md b/daprdocs/content/en/getting-started/install-dapr-selfhost.md index d0fe8a962..6c1d8fd0e 100644 --- a/daprdocs/content/en/getting-started/install-dapr-selfhost.md +++ b/daprdocs/content/en/getting-started/install-dapr-selfhost.md @@ -52,8 +52,8 @@ dapr --version Output should look like this: ``` -CLI version: 1.2.0 -Runtime version: 1.2.0 +CLI version: 1.3.0 +Runtime version: 1.3.0 ``` ### Step 4: Verify containers are running diff --git a/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-upgrade.md b/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-upgrade.md index 428a73900..e0a807262 100644 --- a/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-upgrade.md +++ b/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-upgrade.md @@ -11,15 +11,15 @@ description: "Follow these steps to upgrade Dapr on Kubernetes and ensure a smoo - [Dapr CLI]({{< ref install-dapr-cli.md >}}) - [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. ### 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 - 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. @@ -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 ``` -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 diff --git a/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-upgrade.md b/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-upgrade.md index efe6bb44c..5aa9ad56a 100644 --- a/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-upgrade.md +++ b/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-upgrade.md @@ -25,11 +25,11 @@ description: "Follow these steps to upgrade Dapr in self-hosted mode and ensure 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 $ dapr --version - CLI version: 1.2 - Runtime version: 1.2 + CLI version: 1.3 + Runtime version: 1.3 ```