Skip to content
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

Merged
merged 9 commits into from
Sep 27, 2023

Conversation

vli11
Copy link
Contributor

@vli11 vli11 commented Sep 26, 2023

Closes: #137

PR Checklist

  • Added label to the Pull Request for easier discoverability and search
  • Commit Message meets guidelines as indicated in the URL https://github.com/intel-retail/automated-vending/blob/main/.github/CONTRIBUTING.md
  • Every commit is a single defect fix and does not mix feature addition or changes
  • Unit Tests have been added for new changes
  • Updated Documentation as relevant to the changes
  • All commented out code has been removed
  • If you've added a dependency, you've ensured license is compatible with repository license and clearly outlined the added dependency.
  • PR change contains code related to security
  • PR introduces changes that breaks compatibility with other modules (If YES, please provide details below)

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 )

Closes: intel-retail#137
Signed-off-by: Valina Li <valina.li@intel.com>
@vli11 vli11 added documentation Improvements or additions to documentation enhancement New feature or request labels Sep 26, 2023
@vli11 vli11 self-assigned this Sep 26, 2023
Signed-off-by: Valina Li <valina.li@intel.com>
Copy link
Contributor

@jim-wang-intel jim-wang-intel left a 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. |
Copy link
Contributor

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:

Suggested change
| 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. |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| 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`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#### `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.
Copy link
Contributor

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

@@ -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/).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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 Show resolved Hide resolved
@@ -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.
Copy link
Contributor

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


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.
Copy link
Contributor

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

@@ -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.
Copy link
Contributor

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

@@ -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.
Copy link
Contributor

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

Comment on lines 138 to 141
| 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 |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| 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 |

@@ -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 |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| eclipse-mosquitto:2.0.14 | Up 52 seconds |
| eclipse-mosquitto:2.0.15 | Up 52 seconds |

| 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 |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| edgexfoundry/consul:1.10.10 | Up About a minute |
| edgexfoundry/consul:1.15.2 | Up About a minute |

| 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 |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| redis:6.2-alpine | Up About a minute |
| redis:7.0.11-alpine | Up About a minute |


### 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:
Copy link
Contributor

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor

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

Copy link
Contributor Author

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?

Copy link
Contributor

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?

Suggested change
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.


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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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 <valina.li@intel.com>
Signed-off-by: Valina Li <valina.li@intel.com>
docs_src/configuration.md Show resolved Hide resolved

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.


`MQTTBrokerInfo`
`device-mqtt.environment`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`device-mqtt.environment`
`MQTTBrokerInfo via device-mqtt.environment`

Signed-off-by: Valina Li <valina.li@intel.com>
Signed-off-by: Valina Li <valina.li@intel.com>
Signed-off-by: Valina Li <valina.li@intel.com>
@@ -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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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 <valina.li@intel.com>
@vli11 vli11 requested a review from brian-intel September 27, 2023 17:58
docs_src/configuration.md Outdated Show resolved Hide resolved
docs_src/configuration.md Outdated Show resolved Hide resolved
Signed-off-by: Valina Li <valina.li@intel.com>
@vli11 vli11 requested a review from lenny-goodell September 27, 2023 18:50
Copy link
Contributor

@lenny-goodell lenny-goodell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Contributor

@jim-wang-intel jim-wang-intel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@vli11 vli11 merged commit e9694b6 into intel-retail:Edgex-3.0 Sep 27, 2023
11 checks passed
brian-intel added a commit that referenced this pull request Oct 17, 2023
* refactor: Migrate Edgex compose to 3.0

closes #121

Signed-off-by: Leonard Goodell <leonard.goodell@intel.com>

* 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 <sean.ohair@intel.com>

* feat: Migrate device-mqtt service files and add ENV overrides for mqtt topics (#128)

Signed-off-by: Sean O'Hair <sean.ohair@intel.com>

* feat: Migrate as-vending microservice to EdgeX 3.0 (#139)

* feat: Migrate as-vending microservice to EdgeX 3.0

Signed-off-by: Brian McGinn <brian.mcginn@intel.com>

---------

Signed-off-by: Brian McGinn <brian.mcginn@intel.com>
Co-authored-by: Lenny Goodell <leonard.goodell@intel.com>
Co-authored-by: Jim Wang @ Intel <yutsung.jim.wang@intel.com>

* 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 <yutsung.jim.wang@intel.com>

---------

Signed-off-by: Jim Wang <yutsung.jim.wang@intel.com>

* 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 <neethu.elizabeth.simon@intel.com>

* feat: Migration changes in docker-compose

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* feat: removed zmq references

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* feat: change image name in trivyimagescan

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

---------

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* 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 <valina.li@intel.com>

* feat: Migrate ds-controller microservice to EdgeX 3.0 (#145)

* feat: Migrate ds-controller to EdgeX 3.0

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* feat: handle hadolint + remove zeromq

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* feat: add hadolint flag

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* feat: changed devicelist toml to yaml

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* fix: typo

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* fix: change device-list in dockerfile

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* fix: yaml indentation

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

---------

Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>

* build: Upgrade portianer to CE version

closes #136

Signed-off-by: Leonard Goodell <leonard.goodell@intel.com>

* 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 <sean.ohair@intel.com>

* feat: Migrate ds-cv-inferencing to be EdgeX 3.0 compatible

Closes #135

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: address pr comments

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: remove top level go.mod and go.sum

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: Address Lenny's PR comments

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* refactor: added code for command client

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* fix: address pr feedback

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: address jim's comments

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* refactor: added mock command client for the unit tests

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* feat: update license year to include 2023 (#149)

Closes: #138

Signed-off-by: Jim Wang <yutsung.jim.wang@intel.com>

* refactor: updated unit test to pass by adding mock command client that returns error

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* refactor: cleaned up the code

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* refactor: addressed Lenny's code review comments

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* feat: Update test script for v3 endpoints

Closes #150

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* refactor: addressed more of Lenny's code review comments

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* refactor: Fix naming of checkout-> vending and fix service names

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* refactor: addressed more code review comments

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* refactor: changed some of the error logs to debug from info mode

Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>

* feat: update docs for edgex 3.0 update (#152)

* feat: update docs for edgex 3.0 update

Closes: #137
Signed-off-by: Valina Li <valina.li@intel.com>

* feat: update and cleanup compose-av env file (#157)

-------

Signed-off-by: Sean O'Hair <sean.ohair@intel.com>

* feat: update references of automated-checkout to automated-vending (#159)

Signed-off-by: Sean O'Hair <sean.ohair@intel.com>

* refactor: remove use of iot-devkit utilities package, fix ioutil calls

Closes #158

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: broken unit tests

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: address pr comments

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: adjust return statement

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* 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 <brian.mcginn@intel.com>

* fix: remove ioutil to update to os package

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: address pr comments

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: Integration issues with upgrade to EdgeX 3.0

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: adjust unit tests

Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>

* fix: Dependabot reference updates (#174)

Signed-off-by: Brian McGinn <brian.mcginn@intel.com>

---------

Signed-off-by: Leonard Goodell <leonard.goodell@intel.com>
Signed-off-by: Sean O'Hair <sean.ohair@intel.com>
Signed-off-by: Brian McGinn <brian.mcginn@intel.com>
Signed-off-by: Jim Wang <yutsung.jim.wang@intel.com>
Signed-off-by: Neethu Elizabeth Simon <neethu.elizabeth.simon@intel.com>
Signed-off-by: Valina Li <valina.li@intel.com>
Signed-off-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>
Signed-off-by: preethi-satishcandra <preethi.satishchandra@intel.com>
Co-authored-by: Leonard Goodell <leonard.goodell@intel.com>
Co-authored-by: seanohair22 <97766291+seanohair22@users.noreply.github.com>
Co-authored-by: Jim Wang @ Intel <yutsung.jim.wang@intel.com>
Co-authored-by: NeethuES <neethu.elizabeth.simon@intel.com>
Co-authored-by: Valina Li <valina.li@intel.com>
Co-authored-by: Elizabeth J Lee <elizabeth.j.lee@intel.com>
Co-authored-by: preethi-satishcandra <preethi.satishchandra@intel.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants