Skip to content

Commit c5a2ea5

Browse files
committed
Remove m3 references
1 parent bc10e39 commit c5a2ea5

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
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: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,8 @@ The data that OPC UA servers expose can have a complex structure and can be diff
3939

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

42-
<!-- 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. -->
43-
4442
```console
45-
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m3/samples/quickstarts/opc-plc-deployment.yaml
43+
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/opc-plc-deployment.yaml
4644
```
4745

4846
The following snippet shows the YAML file that you applied:
@@ -100,7 +98,7 @@ Run the following commands to download and run the Bicep file that configures yo
10098
# [Bash](#tab/bash)
10199

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

105103
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}')
106104
AIO_INSTANCE_NAME=$(az iot ops list -g $RESOURCE_GROUP --query "[0].name" -o tsv)
@@ -112,7 +110,7 @@ az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RES
112110
# [PowerShell](#tab/powershell)
113111

114112
```powershell
115-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m3/samples/quickstarts/quickstart.bicep -OutFile quickstart.bicep
113+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/quickstart.bicep -OutFile quickstart.bicep
116114
117115
$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
118116
$AIO_INSTANCE_NAME = $(az iot ops list -g $RESOURCE_GROUP --query "[0].name" -o tsv)

0 commit comments

Comments
 (0)