Skip to content

Commit c0106a0

Browse files
Merge pull request #277813 from dominicbetts/aio-quickstart-akrii
AIO: Quickstart Akri clarifications
2 parents bdf8540 + 3a59ee5 commit c0106a0

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

articles/iot-operations/get-started/quickstart-add-assets.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ To verify that the thermostat asset you added is publishing data, view the telem
180180

181181
:::image type="content" source="media/quickstart-add-assets/mqttui-output.png" alt-text="Screenshot of the mqttui topic display showing the temperature telemetry." lightbox="media/quickstart-add-assets/mqttui-output.png":::
182182

183+
> [!TIP]
184+
> Data from an asset with a name that starts with _boiler-_ is from an asset that was automatically discovered. This is not the same asset as the thermostat asset you created.
185+
183186
If there's no data flowing, restart the `aio-opc-opc.tcp-1` pod:
184187

185188
1. Find the name of your `aio-opc-opc.tcp-1` pod by using the following command:
@@ -223,39 +226,38 @@ In the previous section, you saw how to add assets manually. You can also use Az
223226

224227
When you deploy Azure IoT Operations, the deployment includes the Akri discovery handler pods. To verify these pods are running, run the following command:
225228

226-
```bash
229+
```console
227230
kubectl get pods -n azure-iot-operations | grep akri
228231
```
229232

230-
```powershell
231-
kubectl get pods -n azure-iot-operations | Select-String -Pattern "akri"
232-
```
233-
234233
The output from the previous command looks like the following example:
235234

236235
```output
237236
aio-akri-otel-collector-5c775f745b-g97qv 1/1 Running 3 (4h15m ago) 2d23h
238237
aio-akri-agent-daemonset-mp6v7 1/1 Running 3 (4h15m ago) 2d23h
239238
```
240239

241-
In your Codespaces terminal, run the following command to apply a new configuration for the discovery handler:
240+
Use the following command to verify that the discovery pod is running:
242241

243242
```console
244-
kubectl apply -f /workspaces/explore-iot-operations/samples/quickstarts/akri-opcua-asset.yaml
243+
kubectl get pods -n azure-iot-operations | grep discovery
245244
```
246245

247-
The following snippet shows the YAML file that you applied:
246+
The output from the previous command looks like the following example:
248247

249-
:::code language="yaml" source="~/azure-iot-operations-samples/samples/quickstarts/akri-opcua-asset.yaml":::
248+
```output
249+
aio-opc-asset-discovery-wzlnj 1/1 Running 0 19m
250+
```
251+
252+
> [!TIP]
253+
> There's currently a known issue where the Akri discovery handler pod might not start. If you encounter this issue, see [Troubleshoot Azure IoT Akri Preview](../troubleshoot/known-issues.md#azure-iot-akri-preview).
250254
251255
To verify the configuration, run the following command to view the Akri instances that represent the OPC UA data sources discovered by Akri:
252256

253257
```console
254258
kubectl get akrii -n azure-iot-operations
255259
```
256260

257-
It might take a few minutes for the instance to show up.
258-
259261
The output from the previous command looks like the following example.
260262

261263
```output

0 commit comments

Comments
 (0)