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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ Development resources:
73
73
74
74
A cluster host:
75
75
76
-
* An Azure Arc-enabled Kubernetes cluster with the custom location and workload identity features enabled. If you don't have one, follow the steps in [Prepare your Azure Arc-enabled Kubernetes cluster](./howto-prepare-cluster.md?tabs=wsl-ubuntu).
76
+
* An Azure Arc-enabled Kubernetes cluster with the custom location and workload identity features enabled. If you don't have one, follow the steps in [Prepare your Azure Arc-enabled Kubernetes cluster](./howto-prepare-cluster.md).
77
77
78
78
If you deployed Azure IoT Operations to your cluster previously, uninstall those resources before continuing. For more information, see [Update Azure IoT Operations](./howto-manage-update-uninstall.md#update).
* An Azure subscription. If you don't have an Azure subscription, [create one for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
@@ -88,12 +86,17 @@ This section provides steps to create clusters in validated environments on Linu
88
86
The [AksEdgeQuickStartForAio.ps1](https://github.com/Azure/AKS-Edge/blob/main/tools/scripts/AksEdgeQuickStart/AksEdgeQuickStartForAio.ps1) script automates the process of creating and connecting a cluster, and is the recommended path for deploying Azure IoT Operations on AKS Edge Essentials.
89
87
90
88
> [!NOTE]
91
-
> The instructions below are for external customer consumption and will only work after AIO 0.7 is released.
92
-
> For internal bug bashes, use these instructions instead: https://msazure.visualstudio.com/One/_wiki/wikis/AIO.wiki/714254/Setup-AKS-EE-with-WLIF-for-AIO-M2
93
-
89
+
> The instructions below are for external customer consumption and will only work after AIO 0.7 is released.
90
+
> For internal bug bashes, use these instructions instead: https://msazure.visualstudio.com/One/_wiki/wikis/AIO.wiki/714254/Setup-AKS-EE-with-WLIF-for-AIO-M2
94
91
95
92
1. Open an elevated PowerShell window and change the directory to a working folder.
96
93
94
+
1. Get the `objectId` of the Microsoft Entra ID application that the Azure Arc service uses in your tenant.
95
+
96
+
```azurecli
97
+
az ad sp show --id bc313c14-388c-4e7d-a58e-70017303ee3b --query id -o tsv
98
+
```
99
+
97
100
1. Run the following commands, replacing the placeholder values with your information:
98
101
99
102
| Placeholder | Value |
@@ -103,13 +106,14 @@ The [AksEdgeQuickStartForAio.ps1](https://github.com/Azure/AKS-Edge/blob/main/to
103
106
| RESOURCE_GROUP_NAME | The name of an existing resource group or a name for a new resource group to be created. |
104
107
| LOCATION | An Azure region close to you. For the list of currently supported Azure regions, see [Supported regions](../overview-iot-operations.md#supported-regions). |
105
108
| CLUSTER_NAME | A name for the new cluster to be created. |
109
+
| ARC_APP_OBJECT_ID | The object ID value that you retrieved in the previous step. |
az extension add --upgrade --source connectedk8s-1.10.0-py2.py3-none-any.whl
39
38
```
40
39
41
40
1. Use the [az connectedk8s connect](/cli/azure/connectedk8s#az-connectedk8s-connect) command to Arc-enable your Kubernetes cluster and manage it as part of your Azure resource group:
@@ -85,7 +84,7 @@ ms.custom: include file, ignite-2023, devx-track-azurecli
85
84
86
85
1. Save the file and exit the nano editor.
87
86
88
-
1. Get the `objectId` of the Microsoft Entra ID application that the Azure Arc service uses and save it as an environment variable.
87
+
1. Get the `objectId` of the Microsoft Entra ID application that the Azure Arc service uses in your tenant and save it as an environment variable.
89
88
90
89
```azurecli
91
90
export OBJECT_ID=$(az ad sp show --id bc313c14-388c-4e7d-a58e-70017303ee3b --query id -o tsv)
0 commit comments