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-manage-update-uninstall.md
+46-2Lines changed: 46 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: SoniaLopezBravo
5
5
ms.author: sonialopez
6
6
ms.topic: how-to
7
7
ms.custom: devx-track-azurecli
8
-
ms.date: 04/08/2025
8
+
ms.date: 05/20/2025
9
9
10
10
#CustomerIntent: As an OT professional, I want to manage Azure IoT Operations instances.
11
11
---
@@ -107,6 +107,50 @@ You can run `az iot ops check` on your cluster to assess health and configuratio
107
107
108
108
---
109
109
110
+
### (Preview) Clone instance
111
+
112
+
> [!NOTE]
113
+
> The clone feature is in preview and under development.
114
+
115
+
#### [Azure portal](#tab/portal)
116
+
117
+
Currently, the Azure portal doesn't support cloning an Azure IoT Operations instance. You can use the Azure CLI to clone an instance.
118
+
119
+
#### [Azure CLI](#tab/cli)
120
+
121
+
Use the [`az iot ops clone`](/cli/azure/iot/ops#az-iot-ops-clone) command to create a new Azure IoT Operations instance based on an existing one. You can apply the output of clone to another connected cluster, which is referred to as replication. You can also save the clone to a local directory for later use and perform some configuration changes before applying it to a cluster.
122
+
123
+
For more information, see the [clone command wiki page](https://github.com/Azure/azure-iot-ops-cli-extension/wiki/Clone).
124
+
125
+
To clone an instance to another cluster, run:
126
+
127
+
```azurecli
128
+
az iot ops clone --name <INSTANCE_NAME> --resource-group <RESOURCE_GROUP> --to-cluster-id <CLUSTER_ID>
129
+
```
130
+
131
+
To customize the replication to another cluster, use `--param` and specify the parameters you want to change in the format `key=value`. For example, to change the location of the cloned instance, run:
0 commit comments