Skip to content

Commit ed3eeb6

Browse files
committed
Fix sample links
1 parent fd32dfd commit ed3eeb6

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-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-m2",
241-
"url": "https://github.com/Azure-Samples/explore-iot-operations",
242-
"branch": "release-m2",
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-add-assets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ This quickstart uses the OPC PLC simulator to generate sample data. To deploy th
4242
<!-- TODO: Change branch to main before merging the release branch -->
4343

4444
```console
45-
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m2/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
4646
```
4747

4848
The following snippet shows the YAML file that you applied:
4949

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

5252
> [!CAUTION]
5353
> This configuration isn't secure. Don't use this configuration in a production environment.

articles/iot-operations/get-started-end-to-end-sample/quickstart-upload-telemetry-to-cloud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ To create and configure a dataflow in your cluster, run the following commands i
115115
# [Bash](#tab/bash)
116116

117117
```bash
118-
wget https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m2/samples/quickstarts/dataflow.yaml
118+
wget https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/dataflow.yaml
119119
sed -i 's/<NAMESPACE>/'"${CLUSTER_NAME:0:24}"'/' dataflow.yaml
120120

121121
kubectl apply -f dataflow.yaml
@@ -124,7 +124,7 @@ kubectl apply -f dataflow.yaml
124124
# [PowerShell](#tab/powershell)
125125

126126
```powershell
127-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m2/samples/quickstarts/dataflow.yaml -OutFile dataflow.yaml
127+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/dataflow.yaml -OutFile dataflow.yaml
128128
129129
(Get-Content dataflow.yaml) | ForEach-Object { $_ -replace '<NAMESPACE>', $CLUSTER_NAME.Substring(0, [MATH]::Min($CLUSTER_NAME.Length, 24)) } | Set-Content dataflow.yaml
130130

articles/iot-operations/includes/deploy-mqttui.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Verify data is flowing to the MQTT broker by using the **mosquitto_sub** tool. I
1414
<!-- TODO: Change branch to main before merging the release branch -->
1515

1616
```console
17-
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/release-m2/samples/quickstarts/mqtt-client.yaml
17+
kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/explore-iot-operations/main/samples/quickstarts/mqtt-client.yaml
1818
```
1919

2020
The following snippet shows the YAML file that you applied:
2121

22-
:::code language="yaml" source="~/azure-iot-operations-samples-m2/samples/quickstarts/mqtt-client.yaml":::
22+
:::code language="yaml" source="~/azure-iot-operations-samples/samples/quickstarts/mqtt-client.yaml":::
2323

2424
> [!CAUTION]
2525
> This configuration isn't secure. Don't use this configuration in a production environment.

0 commit comments

Comments
 (0)