Skip to content

Commit dc06602

Browse files
committed
Changed schema version 1.1 to 1.4
1 parent e3925cd commit dc06602

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/iot-edge/module-composition.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The $edgeAgent properties follow this structure:
8282
"modulesContent": {
8383
"$edgeAgent": {
8484
"properties.desired": {
85-
"schemaVersion": "1.1",
85+
"schemaVersion": "1.4",
8686
"runtime": {
8787
"settings":{
8888
"registryCredentials":{
@@ -115,7 +115,7 @@ The $edgeAgent properties follow this structure:
115115
}
116116
```
117117

118-
The IoT Edge agent schema version 1.1 was released along with IoT Edge version 1.0.10, and enables module startup order. Schema version 1.1 is recommended for any IoT Edge deployment running version 1.0.10 or later.
118+
The IoT Edge agent schema version 1.4 was released along with IoT Edge version 1.0.10, and enables module startup order. Schema version 1.4 is recommended for any IoT Edge deployment running version 1.0.10 or later.
119119

120120
### Module configuration and management
121121

@@ -130,7 +130,7 @@ For example:
130130
"modulesContent": {
131131
"$edgeAgent": {
132132
"properties.desired": {
133-
"schemaVersion": "1.1",
133+
"schemaVersion": "1.4",
134134
"runtime": { ... },
135135
"systemModules": {
136136
"edgeAgent": { ... },
@@ -195,7 +195,7 @@ Routes are declared in the **$edgeHub** desired properties with the following sy
195195
"$edgeAgent": { ... },
196196
"$edgeHub": {
197197
"properties.desired": {
198-
"schemaVersion": "1.1",
198+
"schemaVersion": "1.4",
199199
"routes": {
200200
"route1": "FROM <source> WHERE <condition> INTO <sink>",
201201
"route2": {
@@ -215,7 +215,7 @@ Routes are declared in the **$edgeHub** desired properties with the following sy
215215
}
216216
```
217217

218-
The IoT Edge hub schema version 1.1 was released along with IoT Edge version 1.0.10, and enables route prioritization and time to live. Schema version 1.1 is recommended for any IoT Edge deployment running version 1.0.10 or later.
218+
The IoT Edge hub schema version 1.4 was released along with IoT Edge version 1.0.10, and enables route prioritization and time to live. Schema version 1.4 is recommended for any IoT Edge deployment running version 1.0.10 or later.
219219

220220
Every route needs a *source* where the messages come from and a *sink* where the messages go. The *condition* is an optional piece that you can use to filter messages.
221221

@@ -284,7 +284,7 @@ Option 1:
284284
"route1": "FROM <source> WHERE <condition> INTO <sink>",
285285
```
286286

287-
Option 2, introduced in IoT Edge version 1.0.10 with IoT Edge hub schema version 1.1:
287+
Option 2, introduced in IoT Edge version 1.0.10 with IoT Edge hub schema version 1.4:
288288

289289
```json
290290
"route2": {
@@ -317,7 +317,7 @@ The following example shows what a valid deployment manifest document may look l
317317
"modulesContent": {
318318
"$edgeAgent": {
319319
"properties.desired": {
320-
"schemaVersion": "1.1",
320+
"schemaVersion": "1.4",
321321
"runtime": {
322322
"type": "docker",
323323
"settings": {
@@ -336,7 +336,7 @@ The following example shows what a valid deployment manifest document may look l
336336
"edgeAgent": {
337337
"type": "docker",
338338
"settings": {
339-
"image": "mcr.microsoft.com/azureiotedge-agent:1.1",
339+
"image": "mcr.microsoft.com/azureiotedge-agent:1.4",
340340
"createOptions": "{}"
341341
}
342342
},
@@ -346,7 +346,7 @@ The following example shows what a valid deployment manifest document may look l
346346
"restartPolicy": "always",
347347
"startupOrder": 0,
348348
"settings": {
349-
"image": "mcr.microsoft.com/azureiotedge-hub:1.1",
349+
"image": "mcr.microsoft.com/azureiotedge-hub:1.4",
350350
"createOptions": "{\"HostConfig\":{\"PortBindings\":{\"443/tcp\":[{\"HostPort\":\"443\"}],\"5671/tcp\":[{\"HostPort\":\"5671\"}],\"8883/tcp\":[{\"HostPort\":\"8883\"}]}}}"
351351
}
352352
}
@@ -382,7 +382,7 @@ The following example shows what a valid deployment manifest document may look l
382382
},
383383
"$edgeHub": {
384384
"properties.desired": {
385-
"schemaVersion": "1.1",
385+
"schemaVersion": "1.4",
386386
"routes": {
387387
"sensorToFilter": {
388388
"route": "FROM /messages/modules/SimulatedTemperatureSensor/outputs/temperatureOutput INTO BrokeredEndpoint(\"/modules/filtermodule/inputs/input1\")",

0 commit comments

Comments
 (0)