Skip to content

Commit 08200a2

Browse files
committed
Update preview component instructions
1 parent 35f5adc commit 08200a2

File tree

3 files changed

+45
-31
lines changed

3 files changed

+45
-31
lines changed

articles/iot-operations/discover-manage-assets/howto-use-media-connector.md

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -34,37 +34,7 @@ A camera connected to your network and accessible from your Azure IoT Operations
3434
3535
## Update the media connector
3636

37-
To update the version of the media connector in your Azure IoT Operations deployment, run the following PowerShell commands:
38-
39-
```powershell
40-
$clusterName="<YOUR AZURE IOT OPERATIONS CLUSTER NAME>"
41-
$clusterResourceGroup="<YOUR RESOURCE GROUP NAME>"
42-
43-
$extension = az k8s-extension list `
44-
--cluster-name $clusterName `
45-
--cluster-type connectedClusters `
46-
--resource-group $clusterResourceGroup `
47-
--query "[?extensionType == 'microsoft.iotoperations']" `
48-
| ConvertFrom-Json
49-
50-
51-
az k8s-extension update `
52-
--version $extension.version `
53-
--name $extension.name `
54-
--release-train $extension.releaseTrain `
55-
--cluster-name $clusterName `
56-
--resource-group $clusterResourceGroup `
57-
--cluster-type connectedClusters `
58-
--auto-upgrade-minor-version false `
59-
--config connectors.image.registry=mcr.microsoft.com `
60-
--config connectors.image.repository=aio-connectors/helmchart/microsoft-aio-connectors `
61-
--config connectors.image.tag=1.1.0 `
62-
--config connectors.values.enablePreviewFeatures=true `
63-
--yes
64-
```
65-
66-
> [!NOTE]
67-
> This update process is for preview components only. The media connector is currently a preview component.
37+
[!INCLUDE [deploy-preview-media-connectors](../includes/deploy-preview-media-connectors.md)]
6838

6939
## Deploy the media server
7040

articles/iot-operations/discover-manage-assets/howto-use-onvif-connector.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ An ONVIF compliant camera connected to your Azure IoT Operations cluster.
2626
> [!NOTE]
2727
> Microsoft has validated this preview release with the TP-Link Tapo C210 camera.
2828
29+
## Update the ONVIF connector
30+
31+
[!INCLUDE [deploy-preview-media-connectors](../includes/deploy-preview-media-connectors.md)]
32+
2933
## Asset endpoint configuration
3034

3135
To configure the ONVIF connector, first create an asset endpoint that defines the connection to the ONVIF compliant camera asset. The asset endpoint includes the URL of the ONVIF discovery endpoint and any credentials you need to access the camera.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: include file
3+
description: include file
4+
author: dominicbetts
5+
ms.topic: include
6+
ms.date: 03/20/2025
7+
ms.author: dobett
8+
---
9+
10+
To update the version of the media and ONVIF connectors in your Azure IoT Operations deployment, run the following PowerShell commands:
11+
12+
```powershell
13+
$clusterName="<YOUR AZURE IOT OPERATIONS CLUSTER NAME>"
14+
$clusterResourceGroup="<YOUR RESOURCE GROUP NAME>"
15+
16+
$extension = az k8s-extension list `
17+
--cluster-name $clusterName `
18+
--cluster-type connectedClusters `
19+
--resource-group $clusterResourceGroup `
20+
--query "[?extensionType == 'microsoft.iotoperations']" `
21+
| ConvertFrom-Json
22+
23+
24+
az k8s-extension update `
25+
--version $extension.version `
26+
--name $extension.name `
27+
--release-train $extension.releaseTrain `
28+
--cluster-name $clusterName `
29+
--resource-group $clusterResourceGroup `
30+
--cluster-type connectedClusters `
31+
--auto-upgrade-minor-version false `
32+
--config connectors.image.registry=mcr.microsoft.com `
33+
--config connectors.image.repository=aio-connectors/helmchart/microsoft-aio-connectors `
34+
--config connectors.image.tag=1.1.0 `
35+
--config connectors.values.enablePreviewFeatures=true `
36+
--yes
37+
```
38+
39+
> [!NOTE]
40+
> This update process is for preview components only. The media and ONVIF connectors are currently preview components.

0 commit comments

Comments
 (0)