-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: update docs for edgex 3.0 update #152
Conversation
Closes: intel-retail#137 Signed-off-by: Valina Li <[email protected]>
Signed-off-by: Valina Li <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there are some url still pointing to the old url (intel-iot-devkit) and /v2 to /v3
please do a global search under docs/src folder to fix them all.
@@ -265,12 +265,12 @@ The following picture illustrates the flow to calculate the inventory deltas bet | |||
<img src="../images/delta.png"> | |||
</p> | |||
|
|||
The Automated Checkout architecture uses three MQTT topics: | |||
The Automated Vending architecture uses three MQTT topics: | |||
|
|||
| Topic | Description | | |||
| ----------------------------- | ------------------------------------------------------------------------------------------------ | | |||
| Inference/CommandTopic | All events pushed from EdgeX's command API are fed into this topic. The [`as-vending`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-vending) and [`as-controller-board-status`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-controller-board-status) are two services that make requests to this API, typically for making door close/open and heartbeat events. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we probably also want to fix the url for that too:
| Inference/CommandTopic | All events pushed from EdgeX's command API are fed into this topic. The [`as-vending`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-vending) and [`as-controller-board-status`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-controller-board-status) are two services that make requests to this API, typically for making door close/open and heartbeat events. | | |
| Inference/CommandTopic | All events pushed from EdgeX's command API are fed into this topic. The [`as-vending`](https://github.com/intel-retail/automated-vending/tree/main/as-vending) and [`as-controller-board-status`](https://github.com/intel-retail/automated-vending/tree/main/as-controller-board-status) are two services that make requests to this API, typically for making door close/open and heartbeat events. | |
|
||
| Topic | Description | | ||
| ----------------------------- | ------------------------------------------------------------------------------------------------ | | ||
| Inference/CommandTopic | All events pushed from EdgeX's command API are fed into this topic. The [`as-vending`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-vending) and [`as-controller-board-status`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-controller-board-status) are two services that make requests to this API, typically for making door close/open and heartbeat events. | | ||
| Inference/ResponseTopic | The Automated Checkout cv inference service will respond to published messages on the `Inference/CommandTopic` topic on the `Inference/ResponseTopic` topic. | | ||
| Inference/ResponseTopic | The Automated Vending cv inference service will respond to published messages on the `Inference/CommandTopic` topic on the `Inference/ResponseTopic` topic. | | ||
| Inference/DataTopic | The cv inference service publishes delta SKUs on this topic, then the MQTT device service converts them into EdgeX event readings, and finally the [`as-vending`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-vending) service processes the event readings and pushes them to downstream services. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Inference/DataTopic | The cv inference service publishes delta SKUs on this topic, then the MQTT device service converts them into EdgeX event readings, and finally the [`as-vending`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-vending) service processes the event readings and pushes them to downstream services. | | |
| Inference/DataTopic | The cv inference service publishes delta SKUs on this topic, then the MQTT device service converts them into EdgeX event readings, and finally the [`as-vending`](https://github.com/intel-retail/automated-vending/tree/main/as-vending) service processes the event readings and pushes them to downstream services. | |
@@ -279,7 +279,7 @@ The Automated Checkout architecture uses three MQTT topics: | |||
|
|||
#### `GET`: `http://localhost:59982/api/v2/device/name/Inference-device/inferenceHeartbeat` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#### `GET`: `http://localhost:59982/api/v2/device/name/Inference-device/inferenceHeartbeat` | |
#### `GET`: `http://localhost:59982/api/v3/device/name/Inference-device/inferenceHeartbeat` |
@@ -279,7 +279,7 @@ The Automated Checkout architecture uses three MQTT topics: | |||
|
|||
#### `GET`: `http://localhost:59982/api/v2/device/name/Inference-device/inferenceHeartbeat` | |||
|
|||
The `GET` call to the EdgeX MQTT device service's `inferenceHearbeat` command will act as a health-check for the Automated Checkout cv inference service. It must return `200 OK` upon swiping an RFID card in order for the vending workflow to begin. If it does not, the [`as-vending`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-vending) service will enter maintenance mode. | |||
The `GET` call to the EdgeX MQTT device service's `inferenceHearbeat` command will act as a health-check for the Automated Vending cv inference service. It must return `200 OK` upon swiping an RFID card in order for the vending workflow to begin. If it does not, the [`as-vending`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/as-vending) service will enter maintenance mode. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix url to intel-retail
docs_src/configuration.md
Outdated
@@ -1,29 +1,13 @@ | |||
# Configuration | |||
|
|||
This page lists all of the relevant configuration parameters for each service in the Automated Checkout reference implementation. | |||
This page lists all of the relevant configuration parameters for each service in the Automated Vending reference implementation. | |||
|
|||
!!!info | |||
Note that this document likely does not cover EdgeX-specific configuration parameters. Application and device service SDK documentation can be found in the [EdgeX Foundry GitHub repositories](https://github.com/edgexfoundry) or in the [official EdgeX documentation here](https://docs.edgexfoundry.org/2.2/). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this document likely does not cover EdgeX-specific configuration parameters. Application and device service SDK documentation can be found in the [EdgeX Foundry GitHub repositories](https://github.com/edgexfoundry) or in the [official EdgeX documentation here](https://docs.edgexfoundry.org/2.2/). | |
Note that this document likely does not cover EdgeX-specific configuration parameters. Application and device service SDK documentation can be found in the [EdgeX Foundry GitHub repositories](https://github.com/edgexfoundry) or in the [official EdgeX documentation here](https://docs.edgexfoundry.org/3.0/). |
docs_src/configuration.md
Outdated
@@ -58,19 +42,15 @@ The following items can be configured via the `DriverConfig` section of the serv | |||
|
|||
## EdgeX MQTT device service | |||
|
|||
This reference implementation uses the [MQTT Device Service](https://github.com/edgexfoundry/device-mqtt-go) from EdgeX with custom device profiles. These device profiles YAML files are located [here](https://github.com/intel-iot-devkit/automated-checkout/blob/master/res/device-mqtt/profiles/inference-mqtt-device-profile.yml) and are volume mounted into the device service's running Docker container. | |||
This reference implementation uses the [MQTT Device Service](https://github.com/edgexfoundry/device-mqtt-go) from EdgeX with custom device profiles. These device profiles YAML files are located [here](https://github.com/intel-retail/automated-vending/blob/Edgex-3.0/res/device-mqtt/profiles/inference-mqtt-device-profile.yml) and are volume mounted into the device service's running Docker container. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one exists on main, so link to main branch
docs_src/configuration.md
Outdated
|
||
The following items can be configured via `MQTTBrokerInfo` section of the service's [configuration.toml](https://github.com/intel-iot-devkit/automated-checkout/blob/master/res/device-mqtt/configuration.toml) file. All values are strings. | ||
The following items can be configured via `device-mqtt.environment` section of the service's [docker-compose.edgex.yml](https://github.com/intel-retail/automated-vending/blob/Edgex-3.0/docker-compose.edgex.yml) file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
compose file exist on main, so like to main branch
docs_src/modifying_source_code.md
Outdated
@@ -22,11 +22,11 @@ Next, build the specific service's image: | |||
make ds-card-reader | |||
``` | |||
|
|||
After Docker builds the image (by executing the steps in [`ds-card-reader/Dockerfile`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/ds-card-reader/Dockerfile)), proceed to the next section. | |||
After Docker builds the image (by executing the steps in [`ds-card-reader/Dockerfile`](https://github.com/intel-retail/automated-vending/blob/Edgex-3.0/ds-card-reader/Dockerfile)), proceed to the next section. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
file exists on main, link to main branch
docs_src/phases/phase1.md
Outdated
@@ -117,7 +117,7 @@ curl -X PUT -H "Content-Type: application/json" -d '{"card-number":"0003293374"} | |||
There should not be any response message when running this EdgeX command successfully. | |||
|
|||
!!! info | |||
By default, the card number `0003293374` corresponds to a card in the [`ms-authentication/cards.json`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/ms-authentication/cards.json) file that has the "stocker" role associated to it. | |||
By default, the card number `0003293374` corresponds to a card in the [`ms-authentication/cards.json`](https://github.com/intel-retail/automated-vending/blob/Edgex-3.0/ms-authentication/cards.json) file that has the "stocker" role associated to it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
file exists on main, link to main branch
docs_src/index.md
Outdated
| edgexfoundry/core-command:2.2.0 | Up About a minute | | ||
| edgexfoundry/core-data:2.2.0 | Up About a minute | | ||
| edgexfoundry/core-metadata:2.2.0 | Up About a minute | | ||
| edgexfoundry/support-notifications:2.2.0 | Up About a minute | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| edgexfoundry/core-command:2.2.0 | Up About a minute | | |
| edgexfoundry/core-data:2.2.0 | Up About a minute | | |
| edgexfoundry/core-metadata:2.2.0 | Up About a minute | | |
| edgexfoundry/support-notifications:2.2.0 | Up About a minute | | |
| edgexfoundry/core-command:3.0.0 | Up About a minute | | |
| edgexfoundry/core-data:3.0.0 | Up About a minute | | |
| edgexfoundry/core-metadata:3.0.0 | Up About a minute | | |
| edgexfoundry/support-notifications:3.0.0 | Up About a minute | |
docs_src/index.md
Outdated
@@ -126,21 +126,21 @@ docker ps --format 'table{{.Image}}\t{{.Status}}' | |||
|
|||
| IMAGE | STATUS | | |||
|------------------------------------------------------|-------------------| | |||
| automated-checkout/ms-ledger:dev | Up 53 seconds | | |||
| automated-vending/ms-ledger:dev | Up 53 seconds | | |||
| eclipse-mosquitto:2.0.14 | Up 52 seconds | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| eclipse-mosquitto:2.0.14 | Up 52 seconds | | |
| eclipse-mosquitto:2.0.15 | Up 52 seconds | |
docs_src/index.md
Outdated
| automated-checkout/ds-card-reader:dev | Up 53 seconds | | ||
| automated-checkout/as-controller-board-status:dev | Up 52 seconds | | ||
| automated-vending/ds-card-reader:dev | Up 53 seconds | | ||
| automated-vending/as-controller-board-status:dev | Up 52 seconds | | ||
| edgexfoundry/core-command:2.2.0 | Up About a minute | | ||
| edgexfoundry/core-data:2.2.0 | Up About a minute | | ||
| edgexfoundry/core-metadata:2.2.0 | Up About a minute | | ||
| edgexfoundry/support-notifications:2.2.0 | Up About a minute | | ||
| edgexfoundry/consul:1.10.10 | Up About a minute | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| edgexfoundry/consul:1.10.10 | Up About a minute | | |
| edgexfoundry/consul:1.15.2 | Up About a minute | |
docs_src/index.md
Outdated
| edgexfoundry/core-command:2.2.0 | Up About a minute | | ||
| edgexfoundry/core-data:2.2.0 | Up About a minute | | ||
| edgexfoundry/core-metadata:2.2.0 | Up About a minute | | ||
| edgexfoundry/support-notifications:2.2.0 | Up About a minute | | ||
| edgexfoundry/consul:1.10.10 | Up About a minute | | ||
| automated-checkout/ds-cv-inference:dev | Up 51 seconds | | ||
| automated-vending/ds-cv-inference:dev | Up 51 seconds | | ||
| redis:6.2-alpine | Up About a minute | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| redis:6.2-alpine | Up About a minute | | |
| redis:7.0.11-alpine | Up About a minute | |
docs_src/index.md
Outdated
|
||
### How to use the Compose Files | ||
|
||
The docker-compose files are segmented to allow for fine control of physical and simulated devices, as well as allowing you the choice of running Portainer. Use the [`makefile`](https://github.com/intel-iot-devkit/automated-checkout/blob/master/Makefile) to manage the various compose files: | ||
The docker-compose files are segmented to allow for fine control of physical and simulated devices, as well as allowing you the choice of running Portainer. Use the [`makefile`](https://github.com/intel-retail/automated-vending/blob/Edgex-3.0/Makefile) to manage the various compose files: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
file exists on main. Link to main
@@ -12,7 +12,7 @@ The **Automated Checkout** reference implementation utilizes three device servic | |||
|
|||
### Card reader description | |||
|
|||
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to grant access to the Automated Checkout. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input into the EdgeX framework. | |||
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to grant access to the Automated Vending. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input into the EdgeX framework. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to grant access to the Automated Vending. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input into the EdgeX framework. | |
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to connect with the Automated Vending business logic. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and forwarding the input into the EdgeX framework. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure if this is the right phrasing, but grant access to the Automated Vending
seems incomplete
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we do need device to be authenticated to give information to automated vending. @brian-intel what do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only atuh is auth of the user. The way AV Auth works is the card is read by this service and then the Auth service validates the card number and grants/denies access to the cooler.
So maybe this is better?
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to grant access to the Automated Vending. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input into the EdgeX framework. | |
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to read user's card for accessing to the Automated Vending. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input thru the EdgeX framework to the ms-authentication service which authorizes/denies access to the Automated Vending. |
docs_src/phases/phase1.md
Outdated
|
||
The steps in this guide show how to simulate the automated checkout workflow using [`curl`](https://github.com/curl/curl) REST API calls. It is a step-by-step walkthrough with specific commands to run on the command line. | ||
The steps in this guide show how to simulate the automated Vending workflow using [`curl`](https://github.com/curl/curl) REST API calls. It is a step-by-step walkthrough with specific commands to run on the command line. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The steps in this guide show how to simulate the automated Vending workflow using [`curl`](https://github.com/curl/curl) REST API calls. It is a step-by-step walkthrough with specific commands to run on the command line. | |
The steps in this guide show how to simulate the Automated Vending workflow using [`curl`](https://github.com/curl/curl) REST API calls. It is a step-by-step walkthrough with specific commands to run on the command line. |
Signed-off-by: Valina Li <[email protected]>
Signed-off-by: Valina Li <[email protected]>
docs_src/configuration.md
Outdated
|
||
The following items can be configured via `MQTTBrokerInfo` section of the service's [configuration.toml](https://github.com/intel-iot-devkit/automated-checkout/blob/master/res/device-mqtt/configuration.toml) file. All values are strings. | ||
The following items can be configured via `device-mqtt.environment` section of the service's [docker-compose.edgex.yml](https://github.com/intel-retail/automated-vending/tree/main/docker-compose.edgex.yml) file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The following items can be configured via `device-mqtt.environment` section of the service's [docker-compose.edgex.yml](https://github.com/intel-retail/automated-vending/tree/main/docker-compose.edgex.yml) file. | |
The following `MQTTBrokerInfo` configuration items can be configured via `device-mqtt.environment` section of the service's [docker-compose.edgex.yml](https://github.com/intel-retail/automated-vending/tree/main/docker-compose.edgex.yml) file. |
docs_src/configuration.md
Outdated
|
||
`MQTTBrokerInfo` | ||
`device-mqtt.environment` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`device-mqtt.environment` | |
`MQTTBrokerInfo via device-mqtt.environment` |
Signed-off-by: Valina Li <[email protected]>
Signed-off-by: Valina Li <[email protected]>
Signed-off-by: Valina Li <[email protected]>
@@ -12,7 +12,7 @@ The **Automated Checkout** reference implementation utilizes three device servic | |||
|
|||
### Card reader description | |||
|
|||
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to grant access to the Automated Checkout. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input into the EdgeX framework. | |||
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to read user's card for accessing to the Automated Vending. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input through the EdgeX framework to the ms-authentication service which authorizes/denies access to the Automated Vending. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to read user's card for accessing to the Automated Vending. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input through the EdgeX framework to the ms-authentication service which authorizes/denies access to the Automated Vending. | |
The `ds-card-reader` device service is an EdgeX device service that allows a USB-based RFID card reader to read the user's card and grant access to the Automated Vending system. At a high level, this device service is responsible for discovering a specific card reader device, watching for input from that device, parsing that input, and then forwarding the input through the EdgeX framework to the ms-authentication service which authorizes/denies access to the Automated Vending. |
Signed-off-by: Valina Li <[email protected]>
Signed-off-by: Valina Li <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* refactor: Migrate Edgex compose to 3.0 closes #121 Signed-off-by: Leonard Goodell <[email protected]> * feat(ms-authentication): Update ms-authentication service to EdgeX v3.0 (#126) * feat(ms-authentication): Update ms-authentication service to EdgeX v3.0 --------- Signed-off-by: Sean O'Hair <[email protected]> * feat: Migrate device-mqtt service files and add ENV overrides for mqtt topics (#128) Signed-off-by: Sean O'Hair <[email protected]> * feat: Migrate as-vending microservice to EdgeX 3.0 (#139) * feat: Migrate as-vending microservice to EdgeX 3.0 Signed-off-by: Brian McGinn <[email protected]> --------- Signed-off-by: Brian McGinn <[email protected]> Co-authored-by: Lenny Goodell <[email protected]> Co-authored-by: Jim Wang @ Intel <[email protected]> * feat: update as controller board to use EdgeX-3.0 (#140) * feat: update as controller board to use EdgeX-3.0 * fix: remove build tags related to no_zmq for tests * fix: change automated checkout wording to automated vending for as-controller board * fix: add the missing support-notification client config in configuration yaml file Signed-off-by: Jim Wang <[email protected]> --------- Signed-off-by: Jim Wang <[email protected]> * feat: Migrate ms-ledger microservice to EdgeX 3.0 (#141) * feat: Migrate ms-ledger microservice to EdgeX 3.0 Signed-off-by: Neethu Elizabeth Simon <[email protected]> * feat: Migration changes in docker-compose Signed-off-by: Neethu Elizabeth Simon <[email protected]> * feat: removed zmq references Signed-off-by: Neethu Elizabeth Simon <[email protected]> * feat: change image name in trivyimagescan Signed-off-by: Neethu Elizabeth Simon <[email protected]> --------- Signed-off-by: Neethu Elizabeth Simon <[email protected]> * feat: update ds-card-reader to use EdgeX-3.0 (#144) * feat: update ds-card-reader to use EdgeX-3.0 Closes: #133 Signed-off-by: Valina Li <[email protected]> * feat: Migrate ds-controller microservice to EdgeX 3.0 (#145) * feat: Migrate ds-controller to EdgeX 3.0 Signed-off-by: Neethu Elizabeth Simon <[email protected]> * feat: handle hadolint + remove zeromq Signed-off-by: Neethu Elizabeth Simon <[email protected]> * feat: add hadolint flag Signed-off-by: Neethu Elizabeth Simon <[email protected]> * feat: changed devicelist toml to yaml Signed-off-by: Neethu Elizabeth Simon <[email protected]> * fix: typo Signed-off-by: Neethu Elizabeth Simon <[email protected]> * fix: change device-list in dockerfile Signed-off-by: Neethu Elizabeth Simon <[email protected]> * fix: yaml indentation Signed-off-by: Neethu Elizabeth Simon <[email protected]> --------- Signed-off-by: Neethu Elizabeth Simon <[email protected]> * build: Upgrade portianer to CE version closes #136 Signed-off-by: Leonard Goodell <[email protected]> * feat(ms-inventory): Migrate ms-inventory to EdgeX v3.0 (#130) * feat(ms-inventory): Migrate ms-inventory to EdgeX v3.0 --------- Signed-off-by: Sean O'Hair <[email protected]> * feat: Migrate ds-cv-inferencing to be EdgeX 3.0 compatible Closes #135 Signed-off-by: Elizabeth J Lee <[email protected]> * fix: address pr comments Signed-off-by: Elizabeth J Lee <[email protected]> * fix: remove top level go.mod and go.sum Signed-off-by: Elizabeth J Lee <[email protected]> * fix: Address Lenny's PR comments Signed-off-by: Elizabeth J Lee <[email protected]> * refactor: added code for command client Signed-off-by: preethi-satishcandra <[email protected]> * fix: address pr feedback Signed-off-by: Elizabeth J Lee <[email protected]> * fix: address jim's comments Signed-off-by: Elizabeth J Lee <[email protected]> * refactor: added mock command client for the unit tests Signed-off-by: preethi-satishcandra <[email protected]> * feat: update license year to include 2023 (#149) Closes: #138 Signed-off-by: Jim Wang <[email protected]> * refactor: updated unit test to pass by adding mock command client that returns error Signed-off-by: preethi-satishcandra <[email protected]> * refactor: cleaned up the code Signed-off-by: preethi-satishcandra <[email protected]> * refactor: addressed Lenny's code review comments Signed-off-by: preethi-satishcandra <[email protected]> * feat: Update test script for v3 endpoints Closes #150 Signed-off-by: Elizabeth J Lee <[email protected]> * refactor: addressed more of Lenny's code review comments Signed-off-by: preethi-satishcandra <[email protected]> * refactor: Fix naming of checkout-> vending and fix service names Signed-off-by: Elizabeth J Lee <[email protected]> * refactor: addressed more code review comments Signed-off-by: preethi-satishcandra <[email protected]> * refactor: changed some of the error logs to debug from info mode Signed-off-by: preethi-satishcandra <[email protected]> * feat: update docs for edgex 3.0 update (#152) * feat: update docs for edgex 3.0 update Closes: #137 Signed-off-by: Valina Li <[email protected]> * feat: update and cleanup compose-av env file (#157) ------- Signed-off-by: Sean O'Hair <[email protected]> * feat: update references of automated-checkout to automated-vending (#159) Signed-off-by: Sean O'Hair <[email protected]> * refactor: remove use of iot-devkit utilities package, fix ioutil calls Closes #158 Signed-off-by: Elizabeth J Lee <[email protected]> * fix: broken unit tests Signed-off-by: Elizabeth J Lee <[email protected]> * fix: address pr comments Signed-off-by: Elizabeth J Lee <[email protected]> * fix: adjust return statement Signed-off-by: Elizabeth J Lee <[email protected]> * fix: Revert cv-inference back to OpenVINO 2021. Update controller-board device-list format Removed double escape in smoke-test string Closes #161 Signed-off-by: Brian McGinn <[email protected]> * fix: remove ioutil to update to os package Signed-off-by: Elizabeth J Lee <[email protected]> * fix: address pr comments Signed-off-by: Elizabeth J Lee <[email protected]> * fix: Integration issues with upgrade to EdgeX 3.0 Signed-off-by: Elizabeth J Lee <[email protected]> * fix: adjust unit tests Signed-off-by: Elizabeth J Lee <[email protected]> * fix: Dependabot reference updates (#174) Signed-off-by: Brian McGinn <[email protected]> --------- Signed-off-by: Leonard Goodell <[email protected]> Signed-off-by: Sean O'Hair <[email protected]> Signed-off-by: Brian McGinn <[email protected]> Signed-off-by: Jim Wang <[email protected]> Signed-off-by: Neethu Elizabeth Simon <[email protected]> Signed-off-by: Valina Li <[email protected]> Signed-off-by: Elizabeth J Lee <[email protected]> Signed-off-by: preethi-satishcandra <[email protected]> Co-authored-by: Leonard Goodell <[email protected]> Co-authored-by: seanohair22 <[email protected]> Co-authored-by: Jim Wang @ Intel <[email protected]> Co-authored-by: NeethuES <[email protected]> Co-authored-by: Valina Li <[email protected]> Co-authored-by: Elizabeth J Lee <[email protected]> Co-authored-by: preethi-satishcandra <[email protected]>
Closes: #137
PR Checklist
What are you changing?
update automated checking to automated vending; updated toml file to yaml file and their new links.
Issue this PR will close
close: #137
Anything the reviewer should know when reviewing this PR?
Test Instructions if applicable
read through the docs_src folder, all automated checkout should be replaced, and no more toml file
If the there are associated PRs in other repositories, please link them here (i.e. intel-retail/automated-vending )