Skip to content

Commit fac6bf5

Browse files
authored
Merge pull request #112961 from ScarlettFalls/container-management-fix
Update: Store images in private registry
2 parents 029d4ba + 23d479a commit fac6bf5

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

articles/iot-edge/production-checklist.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to take your Azure IoT Edge solution from development to
44
author: kgremban
55
manager: philmea
66
ms.author: kgremban
7-
ms.date: 4/24/2020
7+
ms.date: 4/25/2020
88
ms.topic: conceptual
99
ms.service: iot-edge
1010
services: iot-edge
@@ -167,13 +167,23 @@ For an example of a tag convention, see [Update the IoT Edge runtime](how-to-upd
167167

168168
You know about storing your container images for custom code modules in your private Azure registry, but you can also use it to store public container images such as for the edgeAgent and edgHub runtime modules. Doing so may be required if you have very tight firewall restrictions as these runtime containers are stored in the Microsoft Container Registry (MCR).
169169

170-
Obtain the images with the Docker pull command to place in your registry. Be aware that you will need to update the images with each new release of IoT Edge runtime.
170+
Obtain the images with the Docker pull command to place in your private registry. Be aware that you will need to update the images with each new release of IoT Edge runtime.
171171

172172
| IoT Edge runtime container | Docker pull command |
173173
| --- | --- |
174174
| [Azure IoT Edge Agent](https://hub.docker.com/_/microsoft-azureiotedge-agent) | `docker pull mcr.microsoft.com/azureiotedge-agent` |
175175
| [Azure IoT Edge HUb](https://hub.docker.com/_/microsoft-azureiotedge-hub) | `docker pull mcr.microsoft.com/azureiotedge-hub` |
176176

177+
Next, be sure to update the image references in the deployment.template.json file for the edgeAgent and edgeHub system modules. Replace `mcr.microsoft.com` with your registry name and server for both modules.
178+
179+
* edgeAgent:
180+
181+
`"image": "<registry name and server>/azureiotedge-agent:1.0",`
182+
183+
* edgeHub:
184+
185+
`"image": "<registry name and server>/azureiotedge-hub:1.0",`
186+
177187
## Networking
178188

179189
* **Helpful**

0 commit comments

Comments
 (0)