Skip to content

Commit 537913d

Browse files
committed
Made minor changes to texts, fixed minor typos
1 parent 888014d commit 537913d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/iot-edge/tutorial-deploy-function.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: In this tutorial, you deploy an Azure function as a module to an ed
44
author: kgremban
55
manager: timlt
66
ms.author: kgremban
7-
ms.date: 08/10/2018
7+
ms.date: 08/22/2018
88
ms.topic: tutorial
99
ms.service: iot-edge
1010
services: iot-edge
@@ -166,7 +166,7 @@ In the previous section, you created an IoT Edge solution and added code to the
166166

167167
In this section, you provide the credentials for your container registry twice. The first is to sign in locally from your development machine so that Visual Studio Code can push images to your registry. The second is in the **.env** file of your IoT Edge solution, which gives your IoT Edge device permissions to pull images from your registry.
168168

169-
1. Open the VS Code integrated terminal by selecting **View** > **Integrated Terminal**.
169+
1. Open the VS Code integrated terminal by selecting **View** > **Terminal**.
170170

171171
1. Sign in to your container registry by entering the following command in the integrated terminal. Then you can push your module image to your Azure container registry:
172172

@@ -215,7 +215,7 @@ You can use the Azure portal to deploy your function module to an IoT Edge devic
215215
216216
5. In the VS Code explorer, expand the **Azure IoT Hub Devices** section.
217217
218-
6. Right-click the name of your IoT Edge device, and then select **Create Deployment for IoT Edge device**.
218+
6. Right-click the name of your IoT Edge device, and then select **Create Deployment for single device**.
219219
220220
7. Browse to the solution folder that contains the **CSharpFunction**. Open the config folder, select the deployment.json file, and then choose **Select Edge Deployment Manifest**.
221221

articles/iot-edge/tutorial-deploy-machine-learning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: In this tutorial, you deploy Azure Machine Learning as a module to
44
author: kgremban
55
manager: timlt
66
ms.author: kgremban
7-
ms.date: 06/25/2018
7+
ms.date: 08/22/2018
88
ms.topic: tutorial
99
ms.service: iot-edge
1010
services: iot-edge
@@ -56,7 +56,7 @@ Development resources:
5656
5757
To disable process identification on your IoT edge device, you'll need to provide the ip address and port for **workload_uri** and **management_uri** in the **connect** section of the IoT Edge daemon configuration.
5858

59-
Get the IP address first. Enter `ifconfig` in your command line and copy the IP address of the **docker0** interface.
59+
Get the IP address first. Enter `ipconfig` in your command line and copy the IP address of the **docker0** interface.
6060

6161
Edit the IoT Edge daemon configuration file:
6262

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: iot-edge
66
author: kgremban
77
manager: timlt
88
ms.author: kgremban
9-
ms.date: 06/26/2018
9+
ms.date: 08/22/2018
1010
ms.topic: tutorial
1111
ms.service: iot-edge
1212
ms.custom: mvc
@@ -70,7 +70,7 @@ To send data into a database, you need a module that can structure the data prop
7070
The following steps show you how to create an IoT Edge function using Visual Studio Code and the Azure IoT Edge extension.
7171

7272
1. Open Visual Studio Code.
73-
2. Open the VS Code integrated terminal by selecting **View** > **Integrated Terminal**.
73+
2. Open the VS Code integrated terminal by selecting **View** > **Terminal**.
7474
3. Open the VS Code command palette by selecting **View** > **Command palette**.
7575
4. In the command palette, type and run the command **Azure: Sign in** and follow the instructions to sign in your Azure account. If you've already signed in, you can skip this step.
7676
3. In the command palette, type and run the command **Azure IoT Edge: New IoT Edge solution**. In the command palette, provide the following information to create your solution:
@@ -250,15 +250,15 @@ You can set modules on a device through the IoT Hub, but you can also access you
250250
2. Follow the prompts to sign in to your Azure account.
251251
3. In the command palette, select your Azure subscription then select your IoT Hub.
252252
4. In the VS Code explorer, expand the **Azure IoT Hub Devices** section.
253-
5. Right-click on the device that you want to target with your deployment and select **Create deployment for IoT Edge device**.
253+
5. Right-click on the device that you want to target with your deployment and select **Create deployment for single device**.
254254
6. In the file explorer, navigate to the **config** folder inside your solution and choose **deployment.json**. Click **Select Edge deployment manifest**.
255255
256256
If the deployment is successful, and confirmation message is printed in the VS Code output. You can also check to see that all the modules are up and running on your device.
257257
258258
On your IoT Edge device, run the following command to see the status of the modules. It may take a few minutes.
259259
260-
```bash
261-
sudo iotedge list
260+
```PowerShell
261+
iotedge list
262262
```
263263

264264
## Create the SQL database

0 commit comments

Comments
 (0)