Skip to content

Commit d19bf09

Browse files
chgennarAzure IoT Operations Bot
andauthored
Promote to AIO repo - 0.2.0-preview (#28)
Promote the 0.2.0-preview version to the AIO repo. --------- Co-authored-by: Azure IoT Operations Bot <actionbot@azure.com>
1 parent 15369c4 commit d19bf09

56 files changed

Lines changed: 49700 additions & 147 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/create-azure-iot-operations-release.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -49,31 +49,31 @@ jobs:
4949
uses: actions/checkout@v1
5050

5151
- name: Build Assets
52-
uses: azure/CLI@v1
5352
id: buildAssets
54-
with:
55-
inlineScript: |-
56-
files=()
53+
run: |-
54+
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
55+
56+
files=()
5757
58-
if [[ -d samples/grafana-dashboards ]]; then
59-
zip -r -9 grafana-dashboard.zip samples/grafana-dashboards
60-
files+=("grafana-dashboard.zip")
61-
fi
58+
if [[ -d samples/grafana-dashboards ]]; then
59+
zip -r -9 grafana-dashboard.zip samples/grafana-dashboards
60+
files+=("grafana-dashboard.zip")
61+
fi
6262
63-
if [[ -f dev/azure-iot-operations.bicep ]]; then
64-
az bicep build -f dev/azure-iot-operations.bicep
65-
files+=("dev/azure-iot-operations.json")
66-
elif [[ -f release/azure-iot-operations.json ]]; then
67-
files+=("release/azure-iot-operations.json")
68-
fi
63+
if [[ -f dev/azure-iot-operations.bicep ]]; then
64+
az bicep build -f dev/azure-iot-operations.bicep
65+
files+=("dev/azure-iot-operations.json")
66+
elif [[ -f release/azure-iot-operations.json ]]; then
67+
files+=("release/azure-iot-operations.json")
68+
fi
6969
70-
if [[ -f .integration-lab/int-deployment.bicep ]]; then
71-
az bicep build -f .integration-lab/int-deployment.bicep
72-
files+=(".integration-lab/int-deployment.json")
73-
fi
74-
75-
filelist=$(IFS=,; echo "${files[*]}")
76-
echo "filelist=\"$filelist\"" >> $GITHUB_OUTPUT
70+
if [[ -f .integration-lab/int-deployment.bicep ]]; then
71+
az bicep build -f .integration-lab/int-deployment.bicep
72+
files+=(".integration-lab/int-deployment.json")
73+
fi
74+
75+
filelist=$(IFS=,; echo "${files[*]}")
76+
echo "filelist=\"$filelist\"" >> $GITHUB_OUTPUT
7777
7878
- name: Create Release
7979
id: createRelease

release/azure-iot-operations.json

Lines changed: 26 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"_generator": {
66
"name": "bicep",
77
"version": "0.23.1.45101",
8-
"templateHash": "7874469671048964219"
8+
"templateHash": "7796954663627183826"
99
},
1010
"description": "This template deploys Azure IoT Operations."
1111
},
@@ -186,27 +186,23 @@
186186
"name": "aio-mq-dmqtt-frontend",
187187
"satAudience": "aio-mq"
188188
},
189-
"__VERSION__": "0.1.0-preview",
190-
"__TRAIN__": "preview",
191189
"VERSIONS": {
192-
"adr": "[variables('__VERSION__')]",
193-
"opcUaBroker": "[variables('__VERSION__')]",
194-
"observability": "[variables('__VERSION__')]",
195-
"akri": "[variables('__VERSION__')]",
196-
"mq": "[variables('__VERSION__')]",
197-
"aio": "[variables('__VERSION__')]",
198-
"layeredNetworking": "[variables('__VERSION__')]",
199-
"processor": "[variables('__VERSION__')]"
190+
"adr": "0.1.0-preview",
191+
"opcUaBroker": "0.2.0-preview",
192+
"observability": "0.1.0-preview",
193+
"akri": "0.1.0-preview",
194+
"mq": "0.2.0-preview",
195+
"aio": "0.2.0-preview",
196+
"layeredNetworking": "0.1.0-preview",
197+
"processor": "0.1.1-preview"
200198
},
201199
"TRAINS": {
202-
"mq": "[variables('__TRAIN__')]",
203-
"aio": "[variables('__TRAIN__')]",
204-
"processor": "[variables('__TRAIN__')]",
205-
"adr": "[variables('__TRAIN__')]",
206-
"akri": "[variables('__TRAIN__')]",
207-
"layeredNetworking": "[variables('__TRAIN__')]",
208-
"opcUaBroker": "helm",
209-
"observability": "helm"
200+
"mq": "preview",
201+
"aio": "preview",
202+
"processor": "preview",
203+
"adr": "preview",
204+
"akri": "preview",
205+
"layeredNetworking": "preview"
210206
},
211207
"broker_fe_issuer_configuration": {
212208
"name": "mq-fe-issuer-configuration",
@@ -322,31 +318,31 @@
322318
}
323319
},
324320
"akri_daemonset": {
325-
"name": "akri-opcua-asset-discovery-daemonset",
321+
"name": "aio-opc-asset-discovery",
326322
"type": "yaml.k8s",
327323
"properties": {
328324
"resource": {
329325
"apiVersion": "apps/v1",
330326
"kind": "DaemonSet",
331327
"metadata": {
332-
"name": "akri-opcua-asset-discovery-daemonset"
328+
"name": "aio-opc-asset-discovery"
333329
},
334330
"spec": {
335331
"selector": {
336332
"matchLabels": {
337-
"name": "akri-opcua-asset-discovery"
333+
"name": "aio-opc-asset-discovery"
338334
}
339335
},
340336
"template": {
341337
"metadata": {
342338
"labels": {
343-
"name": "akri-opcua-asset-discovery"
339+
"name": "aio-opc-asset-discovery"
344340
}
345341
},
346342
"spec": {
347343
"containers": [
348344
{
349-
"name": "akri-opcua-asset-discovery",
345+
"name": "aio-opc-asset-discovery",
350346
"image": "[format('mcr.microsoft.com/azureiotoperations/opcuabroker/discovery-handler:{0}', variables('VERSIONS').opcUaBroker)]",
351347
"imagePullPolicy": "Always",
352348
"resources": {
@@ -427,7 +423,7 @@
427423
"name": "opc-ua-broker",
428424
"properties": {
429425
"chart": {
430-
"repo": "oci://mcr.microsoft.com/azureiotoperations/opcuabroker/helmchart/microsoft.iotoperations.opcuabroker",
426+
"repo": "oci://mcr.microsoft.com/azureiotoperations/opcuabroker/helmchart/microsoft-iotoperations-opcuabroker",
431427
"version": "[variables('VERSIONS').opcUaBroker]"
432428
},
433429
"values": {
@@ -792,21 +788,21 @@
792788
"properties": {
793789
"authImage": {
794790
"pullPolicy": "Always",
795-
"repository": "alicesprings.azurecr.io/dmqtt-authentication",
791+
"repository": "mcr.microsoft.com/azureiotoperations/dmqtt-authentication",
796792
"tag": "[variables('VERSIONS').mq]"
797793
},
798794
"brokerImage": {
799795
"pullPolicy": "Always",
800-
"repository": "alicesprings.azurecr.io/dmqtt-pod",
796+
"repository": "mcr.microsoft.com/azureiotoperations/dmqtt-pod",
801797
"tag": "[variables('VERSIONS').mq]"
802798
},
803799
"healthManagerImage": {
804800
"pullPolicy": "Always",
805-
"repository": "alicesprings.azurecr.io/dmqtt-operator",
801+
"repository": "mcr.microsoft.com/azureiotoperations/dmqtt-operator",
806802
"tag": "[variables('VERSIONS').mq]"
807803
},
808804
"diagnostics": {
809-
"probeImage": "[format('alicesprings.azurecr.io/diagnostics-probe:{0}', variables('VERSIONS').mq)]",
805+
"probeImage": "[format('mcr.microsoft.com/azureiotoperations/diagnostics-probe:{0}', variables('VERSIONS').mq)]",
810806
"enableSelfCheck": true
811807
},
812808
"mode": "[parameters('mqMode')]",
@@ -839,7 +835,7 @@
839835
},
840836
"properties": {
841837
"image": {
842-
"repository": "alicesprings.azurecr.io/diagnostics-service",
838+
"repository": "mcr.microsoft.com/azureiotoperations/diagnostics-service",
843839
"tag": "[variables('VERSIONS').mq]"
844840
},
845841
"logLevel": "info",

0 commit comments

Comments
 (0)