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/iot-operations/deploy-iot-ops/howto-deploy-iot-operations.md
+15-5Lines changed: 15 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,6 @@ ms.topic: how-to
7
7
ms.custom: ignite-2023, devx-track-azurecli
8
8
ms.date: 04/08/2025
9
9
10
-
11
10
#CustomerIntent: As an OT professional, I want to deploy Azure IoT Operations to a Kubernetes cluster.
12
11
---
13
12
@@ -128,10 +127,9 @@ Use these steps if you chose the **Test settings** option on the **Dependency ma
128
127
az login
129
128
```
130
129
131
-
1. Install the latest Azure IoT Operations CLI extension.
130
+
1. Install the latest Azure IoT Operations CLI extension if you haven't already.
132
131
133
132
```azurecli
134
-
az upgrade
135
133
az extension add --upgrade --name azure-iot-ops
136
134
```
137
135
@@ -142,13 +140,19 @@ Use these steps if you chose the **Test settings** option on the **Dependency ma
142
140
1. Prepare the cluster for Azure IoT Operations deployment. Copy and run the provided [az iot ops init](/cli/azure/iot/ops#az-iot-ops-init) command.
143
141
144
142
>[!TIP]
145
-
>The `init` command only needs to be run once per cluster. If you're reusing a cluster that already had Azure IoT Operations version 0.8.0 deployed on it, you can skip this step.
143
+
>The `init` command only needs to be run once per cluster. If you're reusing a cluster that already has the latest version of Azure IoT Operations deployed on it, you can skip this step.
146
144
147
145
If you followed the optional prerequisite to set up your own certificate authority issuer, add the `--user-trust` flag to the `init` command.
148
146
149
147
This command might take several minutes to complete. You can watch the progress in the deployment progress display in the terminal.
150
148
151
149
1. Deploy Azure IoT Operations. Copy and run the provided [az iot ops create](/cli/azure/iot/ops#az-iot-ops-create) command.
150
+
151
+
* If you want to use the preview connector configuration, add the following parameter to the `create` command:
152
+
153
+
```bash
154
+
--feature connectors.settings.preview=Enabled
155
+
```
152
156
153
157
* If you followed the optional prerequisites to prepare your cluster for observability, add the following parameters to the `create` command:
154
158
@@ -220,8 +224,14 @@ Use these steps if you chose the **Secure settings** option on the **Dependency
220
224
This command might take several minutes to complete. You can watch the progress in the deployment progress display in the terminal.
221
225
222
226
1. Deploy Azure IoT Operations. Copy and run the provided [az iot ops create](/cli/azure/iot/ops#az-iot-ops-create) command.
227
+
228
+
* If you want to use the preview connector configuration, add the following parameter to the `create` command:
229
+
230
+
```bash
231
+
--feature connectors.settings.preview=Enabled
232
+
```
223
233
224
-
If you followed the optional prerequisites to prepare your cluster for observability, add the following optional parameters to the `create` command:
234
+
* If you followed the optional prerequisites to prepare your cluster for observability, add the following optional parameters to the `create` command:
Copy file name to clipboardExpand all lines: articles/iot-operations/deploy-iot-ops/howto-manage-update-uninstall.md
+18-4Lines changed: 18 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,19 +107,21 @@ You can run `az iot ops check` on your cluster to assess health and configuratio
107
107
108
108
---
109
109
110
-
### Update instance tags and description
110
+
### Update instances and configuration
111
111
112
-
#### [Azure portal](#tab/portal)
112
+
#### [Azure portal](#tab/portal2)
113
113
114
114
1. In the [Azure portal](https://portal.azure.com), go to the resource group that contains your Azure IoT Operations instance, or search for and select **Azure IoT Operations**.
115
115
116
116
1. Select the name of your Azure IoT Operations instance.
117
117
118
118
1. On the **Overview** page of your instance, select **Add tags** or **edit** to modify tags on your instance.
119
119
120
-
#### [Azure CLI](#tab/cli)
120
+
#### [Azure CLI](#tab/cli2)
121
+
122
+
Use the `az iot ops update` command to edit the features of your Azure IoT Operations instance.
121
123
122
-
Use the `az iot ops update` command to edit the tags and description parameters of your Azure IoT Operations instance. The values provided in the `update` command replace any existing tags or description
124
+
To updatetags and description parameters of an instance, run:
0 commit comments