Skip to content

Commit 9caebc5

Browse files
authored
temporary note about AKS-EE M2 script
1 parent 4c16054 commit 9caebc5

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

articles/iot-operations/deploy-iot-ops/howto-prepare-cluster.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,7 @@ This section provides steps to create clusters in validated environments on Linu
8787

8888
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.
8989

90-
> [!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-
90+
9491

9592
1. Open an elevated PowerShell window and change the directory to a working folder.
9693

@@ -104,6 +101,19 @@ The [AksEdgeQuickStartForAio.ps1](https://github.com/Azure/AKS-Edge/blob/main/to
104101
| LOCATION | An Azure region close to you. For the list of currently supported Azure regions, see [Supported regions](../overview-iot-operations.md#supported-regions). |
105102
| CLUSTER_NAME | A name for the new cluster to be created. |
106103

104+
> [!NOTE]
105+
> > **Special instructions for AIO Internal Bugbash**:
106+
> The instructions below for AksEdgeQuickStartForAio.ps1 from AKS-Edge GitHub repo are for external customer consumption and will only work after AIO 0.7 is released.
107+
> For internal bug bashes, use this powershell script below instead
108+
> ```powershell
109+
> $url = "https://raw.githubusercontent.com/jagadishmurugan/AKS-Edge/blob/users/jagamu/changes-for-M2-integration/tools/scripts/AksEdgeQuickStart/AksEdgeQuickStartForAio.ps1"
110+
> Invoke-WebRequest -Uri $url -OutFile .\AksEdgeQuickStartForAio.ps1
111+
> Unblock-File .\AksEdgeQuickStartForAio.ps1
112+
> Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
113+
> .\AksEdgeQuickStartForAio.ps1 -SubscriptionId "<SUBSCRIPTION_ID>" -TenantId "<TENANT_ID>" -ResourceGroupName "<RESOURCE_GROUP_NAME>" -Location "<LOCATION>" -ClusterName "<CLUSTER_NAME>" -Tag "test-v0.3" -CustomLocationOid $customlocationOid
114+
> ```
115+
116+
107117
```powershell
108118
$url = "https://raw.githubusercontent.com/Azure/AKS-Edge/main/tools/scripts/AksEdgeQuickStart/AksEdgeQuickStartForAio.ps1"
109119
Invoke-WebRequest -Uri $url -OutFile .\AksEdgeQuickStartForAio.ps1

0 commit comments

Comments
 (0)