azure-iot-edge

Act for other devices on Azure IoT Hub

本秂侑毒 提交于 2019-12-05 15:45:58
In our scenario, we have a bunch of devices that communicate locally with a gateway. The gateway is responsible to aggregate events from the devices and send it to the cloud. It should also receive device configuration changes from the the cloud and transport it to the specific device. Based on my reading I would think that this is actually a typical IoT Hub scenario. And we would very much like to use the device management, messaging and maybe even twins that IoT Hub provides. However, the way the devices communicate is already implemented and shall not be changed. That means the devices

IoT Edge : device can't download my module from Azure Container Registry but it can from dockerhub

隐身守侯 提交于 2019-12-02 10:02:13
问题 I followed this azure example to develop my module connectedbarmodule in python for Azure IoT Edge. Then , I followed this link to deploy my module in my device (raspberry pi 3). However, my module can't be downloaded. Then, I executed the following command on my device : sudo docker logs -f edgeAgent I have the following error: Error calling Create module ConnectedBarModule: Get https://iotedgeregistery.azurecr.io/v2/connectedbarmodule/manifests/0.0.1-amd64: unauthorized: authentication

IoT Edge : device can't download my module from Azure Container Registry but it can from dockerhub

可紊 提交于 2019-12-02 05:24:14
I followed this azure example to develop my module connectedbarmodule in python for Azure IoT Edge. Then , I followed this link to deploy my module in my device (raspberry pi 3). However, my module can't be downloaded. Then, I executed the following command on my device : sudo docker logs -f edgeAgent I have the following error: Error calling Create module ConnectedBarModule: Get https://iotedgeregistery.azurecr.io/v2/connectedbarmodule/manifests/0.0.1-amd64: unauthorized: authentication required) This is an url regarding my Azure Container Registry where the image of my module is stored. I

Act for other devices on Azure IoT Hub

不羁岁月 提交于 2019-12-01 05:29:07
问题 In our scenario, we have a bunch of devices that communicate locally with a gateway. The gateway is responsible to aggregate events from the devices and send it to the cloud. It should also receive device configuration changes from the the cloud and transport it to the specific device. Based on my reading I would think that this is actually a typical IoT Hub scenario. And we would very much like to use the device management, messaging and maybe even twins that IoT Hub provides. However, the