From fe774cc2c24912add7c6d77f020e53a5009e743f Mon Sep 17 00:00:00 2001 From: Jozef Kralik Date: Thu, 4 May 2023 12:25:46 +0000 Subject: [PATCH] test: use vnext tag image in tests --- Makefile | 4 ++-- bundle/README.md | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 01fc2310a..981aabfbb 100644 --- a/Makefile +++ b/Makefile @@ -113,12 +113,12 @@ http-gateway-www: # standard device DEVICE_SIMULATOR_NAME := devsim -DEVICE_SIMULATOR_IMG := ghcr.io/iotivity/iotivity-lite/cloud-server-debug:master +DEVICE_SIMULATOR_IMG := ghcr.io/iotivity/iotivity-lite/cloud-server-debug:vnext # device with /oic/res observable # note: iotivity-lite runs only grpc-gateway tests and this second device is not started; thus # the grpc-gateway are expected to succeed with a single non-oic/rec observable device DEVICE_SIMULATOR_RES_OBSERVABLE_NAME := devsim-resobs -DEVICE_SIMULATOR_RES_OBSERVABLE_IMG := ghcr.io/iotivity/iotivity-lite/cloud-server-discovery-resource-observable-debug:master +DEVICE_SIMULATOR_RES_OBSERVABLE_IMG := ghcr.io/iotivity/iotivity-lite/cloud-server-discovery-resource-observable-debug:vnext # Pull latest device simulator with given name and run it # diff --git a/bundle/README.md b/bundle/README.md index fb29e6fb4..f04f9b202 100644 --- a/bundle/README.md +++ b/bundle/README.md @@ -19,7 +19,7 @@ Provides a simple docker cloud image for **testing purpose**. ### Pull the image ```bash -docker pull plgd/bundle:vnext +docker pull ghcr.io/plgd-dev/hub/bundle:vnext ``` ### Configuration @@ -60,7 +60,7 @@ All datas, confgurations and logs are stored under /data directory at the contai ```bash mkdir -p `pwd`/data -docker run -d --network=host -v `pwd`/data:/data --name=cloud -t plgd/bundle:vnext +docker run -d --network=host -v `pwd`/data:/data --name=cloud -t ghcr.io/plgd-dev/hub/bundle:vnext ``` ### Access via HTTPS/GRPC @@ -88,7 +88,7 @@ The onboarding values which should be set to the [coapcloudconf](https://github. ```bash # Start the cloud container with "unsecured" parameters -docker run -d --network=host --name=cloud -t plgd/bundle:vnext \ +docker run -d --network=host --name=cloud -t ghcr.io/plgd-dev/hub/bundle:vnext \ -e COAP_GATEWAY_CLOUD_ID="00000000-0000-0000-0000-000000000001" \ -e COAP_GATEWAY_UNSECURE_PORT="5683" ``` @@ -143,7 +143,7 @@ go ob ```bash # Start the cloud container with "secured" parameters -docker run -d --network=host --name=cloud -t plgd/bundle:vnext \ +docker run -d --network=host --name=cloud -t ghcr.io/plgd-dev/hub/bundle:vnext \ -e COAP_GATEWAY_CLOUD_ID="00000000-0000-0000-0000-000000000001" \ -e COAP_GATEWAY_PORT="5684" ``` @@ -227,7 +227,7 @@ docker run -d --network=host -v `pwd`/data:/data --name=cloud \ -e LOG_DEBUG=true \ -e OPEN_TELEMETRY_EXPORTER_ENABLED=true \ -e OPEN_TELEMETRY_EXPORTER_ADDRESS=:4317 \ - -t plgd/bundle:vnext + -t ghcr.io/plgd-dev/hub/bundle:vnext ``` With debug log messages, you can see the open telemetry *traceId* associated with the request. \ No newline at end of file