You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-operations/develop-edge-apps/overview-iot-operations-sdks.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ The SDKs provide a number of components available for simplicity and ease of use
64
64
65
65
* A set of clients providing integration with Azure IoT Operations services such as **state store**, **leader election**, **lease lock**, and **schema registry**.
66
66
67
-
*The**Protocol Compiler (codegen)** allows clients and servers to communicate via a schema contract. First describe the communication (using **Telemetry** and **Commands**) with DTDL, then generate a set of client libraries and server library stubs across the supported programming languages.
67
+
*A**Protocol Compiler (codegen)**, that allows clients and servers to communicate via a schema contract. First describe the communication (using **Telemetry** and **Commands**) with DTDL, then generate a set of client libraries and server library stubs across the supported programming languages.
68
68
69
69
Read further about the underlying terminology and different components of the SDKs:
@@ -196,24 +196,13 @@ Open a new bash terminal in the VS Code Dev Container and do the following steps
196
196
197
197
After Azure IoT Operations is deployed, you need to configure it for development. This includes setting up the MQTT broker and authentication methods, as well as ensuring that the necessary environment variables are setfor your development environment:
198
198
199
-
1. Check that Azure IoT Operations is successfully installed and **resolve any errors before continuing**:
199
+
1. After the deployment is complete, use [az iot ops check](/cli/azure/iot/ops#az-iot-ops-check) to evaluate Azure IoT Operations service deployment forhealth, configuration, and usability. The *check* command can help you find problemsin your deployment and configuration.
200
200
201
201
```azurecli
202
202
az iot ops check
203
203
```
204
204
205
-
Expected output:
206
-
207
-
```output
208
-
╭─────── Check Summary ───────╮
209
-
│ 13 check(s) succeeded. │
210
-
│ 0 check(s) raised warnings. │
211
-
│ 0 check(s) raised errors. │
212
-
│ 4 check(s) were skipped. │
213
-
╰─────────────────────────────╯
214
-
```
215
-
216
-
1. Change to the repository root directory:
205
+
1. Navigate to the repository root directory:
217
206
218
207
```bash
219
208
cd<REPOSITORY ROOT>
@@ -242,6 +231,7 @@ To load the environment variables into your shell, run the following command in
242
231
source<REPOSITORY ROOT>/.env
243
232
```
244
233
234
+
<!-- TODO: Check why this only works with VSCode Dev Containers when I do: kubectl port-forward -n azure-iot-operations service/aio-broker-external 8883:8883 -->
245
235
## Testing the installation
246
236
247
237
To test the setup is working correctly, use `mosquitto_pub` to connect to the MQTT broker to validate the x509 certs, SAT and trust bundle.
0 commit comments