You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/dapr-overview.md
+1-19Lines changed: 1 addition & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,25 +65,7 @@ Microsoft provides best-effort support for [the latest version of Dapr and two p
65
65
66
66
You can run Azure CLI commands to retrieve a list of available versions in [a cluster](/cli/azure/k8s-extension/extension-types#az-k8s-extension-extension-types-list-versions-by-cluster) or [a location](/cli/azure/k8s-extension/extension-types#az-k8s-extension-extension-types-list-versions-by-location).
67
67
68
-
To view a list of the stable Dapr versions available to your managed AKS cluster, run the following command:
To view a list of the stable Dapr versions available _by location_:
81
-
1.[Make sure you've registered the `ExtenstionTypes` feature to your Azure subscription.](./dapr.md#register-the-extenstiontypes-feature-to-your-azure-subscription)
82
-
1. Run the following command.
83
-
84
-
```azurecli
85
-
az k8s-extension extension-types list-versions-by-location --location westus --extension-type microsoft.dapr
86
-
```
68
+
[Learn how to view and target the latest stable Dapr versions available to your managed AKS cluster.](./dapr.md#viewing-the-latest-stable-dapr-versions-available)
|`dev`| Early releases, can contain experimental features. Not suitable for production. |
141
+
142
+
For example:
143
+
144
+
```azurecli
145
+
--release-train stable
146
+
```
147
+
148
+
#### Configuring automatic updates to Dapr control plane
130
149
131
150
> [!WARNING]
132
-
> You can enable automatic updates to the Dapr control plane only in dev or test environments. Auto-upgrade is not suitable for production environments.
151
+
> Auto-upgrade is not suitable for production environments. Only enable automatic updates to the Dapr control plane in dev or test environments. [Learn how to manually upgrade to the latest Dapr version for production environments.](#viewing-the-latest-stable-dapr-versions-available)
133
152
134
153
If you install Dapr without specifying a version, `--auto-upgrade-minor-version`*is automatically enabled*, configuring the Dapr control plane to automatically update its minor version on new releases.
135
154
@@ -141,12 +160,36 @@ You can disable auto-update by specifying the `--auto-upgrade-minor-version` par
141
160
--auto-upgrade-minor-version true
142
161
```
143
162
163
+
### Viewing the latest stable Dapr versions available
164
+
165
+
To upgrade to the latest Dapr version in a production environment, you need to manually upgrade. Start by viewing a list of the stable Dapr versions available to your managed AKS cluster. Run the following command:
To view a list of the stable Dapr versions available _by location_:
178
+
1.[Make sure you've registered the `ExtenstionTypes` feature to your Azure subscription.](./dapr.md#register-the-extenstiontypes-feature-to-your-azure-subscription)
179
+
1. Run the following command.
180
+
181
+
```azurecli
182
+
az k8s-extension extension-types list-versions-by-location --location westus --extension-type microsoft.dapr
183
+
```
184
+
185
+
[Next, manually update Dapr to the latest stable version.](#targeting-a-specific-dapr-version)
186
+
144
187
### Targeting a specific Dapr version
145
188
146
189
> [!NOTE]
147
190
> Dapr is supported with a rolling window, including only the current and previous versions. It is your operational responsibility to remain up to date with these supported versions. If you have an older version of Dapr, you may have to do intermediate upgrades to get to a supported version.
148
191
149
-
The same command-line argument is used for installing a specific version of Dapr or rolling back to a previous version. Set `--auto-upgrade-minor-version` to `false` and `--version` to the version of Dapr you wish to install. If the `version` parameter is omitted, the extension installs the latest version of Dapr. For example, to use Dapr 1.11.2:
192
+
The same command-line argument is used for installing a specific version of Dapr or rolling back to a previous version. Set `--auto-upgrade-minor-version` to `false` and `--version` to the version of Dapr you wish to install. If the `version` parameter is omitted, the extension installs the latest version of Dapr. For example, to use Dapr 1.13.5:
150
193
151
194
```azurecli
152
195
az k8s-extension create --cluster-type managedClusters \
@@ -155,22 +198,7 @@ az k8s-extension create --cluster-type managedClusters \
155
198
--name dapr \
156
199
--extension-type Microsoft.Dapr \
157
200
--auto-upgrade-minor-version false \
158
-
--version 1.11.2
159
-
```
160
-
161
-
### Choosing a release train
162
-
163
-
When configuring the extension, you can choose to install Dapr from a particular release train. Specify one of the two release train values:
0 commit comments