Skip to content

Commit 31ae719

Browse files
Merge pull request #280298 from PatAltimore/patricka-remove-marketplace-ref
Replace marketplace reference
2 parents ec31716 + fad1fd2 commit 31ae719

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

articles/iot-edge/quickstart-linux.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Quickstart creates an Azure IoT Edge device on Linux
33
description: Learn how to create an IoT Edge device on Linux and then deploy prebuilt code remotely from the Azure portal.
44
author: PatAltimore
55
ms.author: patricka
6-
ms.date: 03/27/2024
6+
ms.date: 07/08/2024
77
ms.topic: quickstart
88
ms.service: iot-edge
99
services: iot-edge
@@ -184,13 +184,13 @@ Manage your Azure IoT Edge device from the cloud to deploy a module that will se
184184

185185
:::image type="content" source="./media/quickstart-linux/deploy-module.png" alt-text="Diagram of how to deploy a module from cloud to device.":::
186186

187-
One of the key capabilities of Azure IoT Edge is deploying code to your IoT Edge devices from the cloud. *IoT Edge modules* are executable packages implemented as containers. In this section, you'll deploy a pre-built module from the [IoT Edge Modules section of Azure Marketplace](https://azuremarketplace.microsoft.com/marketplace/apps/category/internet-of-things?page=1&subcategories=iot-edge-modules) directly from Azure IoT Hub.
187+
One of the key capabilities of Azure IoT Edge is deploying code to your IoT Edge devices from the cloud. *IoT Edge modules* are executable packages implemented as containers. In this section, you'll deploy a pre-built module from the [IoT Edge Modules section of Microsoft Artifact Registry](https://mcr.microsoft.com/catalog?cat=IoT%20Edge%20Modules&alphaSort=asc&alphaSortKey=Name).
188188

189189
The module that you deploy in this section simulates a sensor and sends generated data. This module is a useful piece of code when you're getting started with IoT Edge because you can use the simulated data for development and testing. If you want to see exactly what this module does, you can view the [simulated temperature sensor source code](https://github.com/Azure/iotedge/blob/main/edge-modules/SimulatedTemperatureSensor/src/Program.cs).
190190

191-
Follow these steps to start the **Set Modules** wizard to deploy your first module from Azure Marketplace.
191+
Follow these steps to deploy your first module.
192192

193-
1. Sign in to the [Azure portal](https://portal.azure.com) and go to your IoT hub.
193+
1. Sign in to the [Azure portal](https://portal.azure.com) and go to your IoT Hub.
194194

195195
1. From the menu on the left, under **Device Management**, select **Devices**.
196196

articles/iot-edge/quickstart.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: PatAltimore
55
manager: lizross
66
ms.author: patricka
77
ms.reviewer: fcabrera
8-
ms.date: 03/25/2024
8+
ms.date: 07/08/2024
99
ms.topic: quickstart
1010
ms.service: iot-edge
1111
services: iot-edge
@@ -171,13 +171,13 @@ Manage your Azure IoT Edge device from the cloud to deploy a module that sends t
171171

172172
:::image type="content" source="./media/quickstart/deploy-module.png" alt-text="Diagram that shows the step to deploy a module.":::
173173

174-
One of the key capabilities of Azure IoT Edge is deploying code to your IoT Edge devices from the cloud. *IoT Edge modules* are executable packages implemented as containers. In this section, you'll deploy a pre-built module from the [IoT Edge Modules section of Azure Marketplace](https://azuremarketplace.microsoft.com/marketplace/apps/category/internet-of-things?page=1&subcategories=iot-edge-modules) directly from Azure IoT Hub.
174+
One of the key capabilities of Azure IoT Edge is deploying code to your IoT Edge devices from the cloud. *IoT Edge modules* are executable packages implemented as containers. In this section, you'll deploy a pre-built module from the [IoT Edge Modules section of Microsoft Artifact Registry](https://mcr.microsoft.com/catalog?cat=IoT%20Edge%20Modules&alphaSort=asc&alphaSortKey=Name).
175175

176176
The module that you deploy in this section simulates a sensor and sends generated data. This module is a useful piece of code when you're getting started with IoT Edge because you can use the simulated data for development and testing. If you want to see exactly what this module does, you can view the [simulated temperature sensor source code](https://github.com/Azure/iotedge/blob/main/edge-modules/SimulatedTemperatureSensor/src/Program.cs).
177177

178-
Follow these steps to deploy your first module from Azure Marketplace.
178+
Follow these steps to deploy your first module.
179179

180-
1. Sign in to the [Azure portal](https://portal.azure.com) and go to your IoT hub.
180+
1. Sign in to the [Azure portal](https://portal.azure.com) and go to your IoT Hub.
181181

182182
1. From the menu on the left, select **Devices** under the **Device management** menu.
183183

@@ -186,10 +186,9 @@ Follow these steps to deploy your first module from Azure Marketplace.
186186
>[!NOTE]
187187
>When you create a new IoT Edge device, it will display the status code `417 -- The device's deployment configuration is not set` in the Azure portal. This status is normal, and means that the device is ready to receive a module deployment.
188188
189-
190189
1. On the upper bar, select **Set Modules**.
191190

192-
Choose which modules you want to run on your device. You can choose from modules that you've already created, modules from Azure Marketplace, or modules that you've built yourself. In this quickstart, you'll deploy a module from Azure Marketplace.
191+
Choose which modules you want to run on your device. You can choose from modules that you've already created, modules from Microsoft Artifact Registry, or modules that you've built yourself. In this quickstart, you'll deploy a module from the Microsoft Artifact Registry.
193192

194193
1. In the **IoT Edge modules** section, select **Add** then choose **IoT Edge Module**.
195194
1. Update the following module settings:

articles/iot-edge/tutorial-store-data-sql-server.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: iot-edge
55
author: PatAltimore
66

77
ms.author: patricka
8-
ms.date: 08/04/2020
8+
ms.date: 07/08/2024
99
ms.topic: tutorial
1010
ms.service: iot-edge
1111
ms.custom: "mvc, devx-track-csharp"
@@ -207,7 +207,7 @@ You need to select which architecture you're targeting with each solution, becau
207207

208208
## Add the SQL Server container
209209

210-
A [Deployment manifest](module-composition.md) declares which modules the IoT Edge runtime will install on your IoT Edge device. You provided the code to make a customized Function module in the previous section, but the SQL Server module is already built and available in the Azure Microsoft Artifact Registry. You just need to tell the IoT Edge runtime to include it, then configure it on your device.
210+
A [Deployment manifest](module-composition.md) declares which modules the IoT Edge runtime will install on your IoT Edge device. You provided the code to make a customized Function module in the previous section, but the SQL Server module is already built and available in the Microsoft Artifact Registry. You just need to tell the IoT Edge runtime to include it, then configure it on your device.
211211

212212
1. In Visual Studio Code, open the command palette by selecting **View** > **Command palette**.
213213

@@ -224,7 +224,7 @@ A [Deployment manifest](module-composition.md) declares which modules the IoT Ed
224224

225225
6. In your solution folder, open the **deployment.template.json** file.
226226

227-
7. Find the **modules** section. You should see three modules. The module *SimulatedTemperatureSensor* is included by default in new solutions, and provides test data to use with your other modules. The module *sqlFunction* is the module that you initially created and updated with new code. Finally, the module *sql* was imported from the Azure Marketplace.
227+
7. Find the **modules** section. You should see three modules. The module *SimulatedTemperatureSensor* is included by default in new solutions, and provides test data to use with your other modules. The module *sqlFunction* is the module that you initially created and updated with new code. Finally, the module *sql* was imported from the the Microsoft Artifact Registry.
228228

229229
>[!Tip]
230230
>The SQL Server module comes with a default password set in the environment variables of the deployment manifest. Any time that you create a SQL Server container in a production environment, you should [change the default system administrator password](/sql/linux/quickstart-install-connect-docker).

0 commit comments

Comments
 (0)