Skip to content

Commit 194370c

Browse files
authored
Merge pull request #289647 from dominicbetts/aio-remove-release-m3
AIO: Remove m3 references
2 parents 0a1d1df + 4795f70 commit 194370c

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.openpublishing.publish.config.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -236,12 +236,6 @@
236236
"branch": "main",
237237
"branch_mapping": {}
238238
},
239-
{
240-
"path_to_root": "azure-iot-operations-samples-m3",
241-
"url": "https://github.com/Azure-Samples/explore-iot-operations",
242-
"branch": "release-m3",
243-
"branch_mapping": {}
244-
},
245239
{
246240
"path_to_root": "azure-iot-sdk-node",
247241
"url": "https://github.com/Azure/azure-iot-sdk-node",

articles/iot-operations/get-started-end-to-end-sample/quickstart-configure.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,13 @@ The data that OPC UA servers expose can have a complex structure and can be diff
4141

4242
This quickstart uses the OPC PLC simulator to generate sample data. To deploy the OPC PLC simulator, run the following command:
4343

44-
<!-- TODO: Change branch to main in two places below before merging the release branch. Don't delete the samples release-m3 branch until the updates are done in the docs repo. -->
45-
4644
```console
47-
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m3/samples/quickstarts/opc-plc-deployment.yaml
45+
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/opc-plc-deployment.yaml
4846
```
4947

5048
The following snippet shows the YAML file that you applied:
5149

52-
:::code language="yaml" source="~/azure-iot-operations-samples-m3/samples/quickstarts/opc-plc-deployment.yaml":::
50+
:::code language="yaml" source="~/azure-iot-operations-samples/samples/quickstarts/opc-plc-deployment.yaml":::
5351

5452
> [!CAUTION]
5553
> This configuration uses a self-signed application instance certificate. Don't use this configuration in a production environment. To learn more, see [Configure OPC UA certificates infrastructure for the connector for OPC UA](../discover-manage-assets/howto-configure-opcua-certificates-infrastructure.md).
@@ -102,7 +100,7 @@ Run the following commands to download and run the Bicep file that configures yo
102100
# [Bash](#tab/bash)
103101

104102
```bash
105-
wget https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m3/samples/quickstarts/quickstart.bicep -O quickstart.bicep
103+
wget https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/quickstart.bicep -O quickstart.bicep
106104

107105
AIO_EXTENSION_NAME=$(az k8s-extension list -g $RESOURCE_GROUP --cluster-name $CLUSTER_NAME --cluster-type connectedClusters --query "[?extensionType == 'microsoft.iotoperations'].id" -o tsv | awk -F'/' '{print $NF}')
108106
AIO_INSTANCE_NAME=$(az iot ops list -g $RESOURCE_GROUP --query "[0].name" -o tsv)
@@ -114,7 +112,7 @@ az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RES
114112
# [PowerShell](#tab/powershell)
115113

116114
```powershell
117-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m3/samples/quickstarts/quickstart.bicep -OutFile quickstart.bicep
115+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/quickstart.bicep -OutFile quickstart.bicep
118116
119117
$AIO_EXTENSION_NAME = (az k8s-extension list -g $RESOURCE_GROUP --cluster-name $CLUSTER_NAME --cluster-type connectedClusters --query "[?extensionType == 'microsoft.iotoperations'].id" -o tsv) -split '/' | Select-Object -Last 1
120118
$AIO_INSTANCE_NAME = $(az iot ops list -g $RESOURCE_GROUP --query "[0].name" -o tsv)

0 commit comments

Comments
 (0)