From 6cbccd04a76264fb712c39b8ba16e23481d93d30 Mon Sep 17 00:00:00 2001 From: Johann Hoffmann Date: Thu, 28 Jul 2022 10:13:29 +0200 Subject: [PATCH] Add owrrm config env variables for Docker Compose deploy script (#685) Signed-off-by: Johann Hoffmann --- .github/actions/deploy-sdk-docker-compose/action.yml | 2 ++ .github/workflows/ow_docker-compose-upgrade-test.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/actions/deploy-sdk-docker-compose/action.yml b/.github/actions/deploy-sdk-docker-compose/action.yml index 91703106d..3be27817e 100644 --- a/.github/actions/deploy-sdk-docker-compose/action.yml +++ b/.github/actions/deploy-sdk-docker-compose/action.yml @@ -162,6 +162,8 @@ runs: export OWPROV_SYSTEM_URI_PUBLIC="https://${{ steps.set_outputs.outputs.gateway_url }}:16005"; export OWANALYTICS_SYSTEM_URI_PUBLIC="https://${{ steps.set_outputs.outputs.gateway_url }}:16009"; export OWSUB_SYSTEM_URI_PUBLIC="https://${{ steps.set_outputs.outputs.gateway_url }}:16006"; + export OWRRM_SERVICECONFIG_PRIVATEENDPOINT="http://owrrm.wlan.local:16789"; + export OWRRM_SERVICECONFIG_PUBLICENDPOINT="http://${{ steps.set_outputs.outputs.gateway_url }}:16789"; ./deploy.sh EOF diff --git a/.github/workflows/ow_docker-compose-upgrade-test.yml b/.github/workflows/ow_docker-compose-upgrade-test.yml index 0d698e80b..f7eb59ee7 100644 --- a/.github/workflows/ow_docker-compose-upgrade-test.yml +++ b/.github/workflows/ow_docker-compose-upgrade-test.yml @@ -154,6 +154,8 @@ jobs: export OWPROV_SYSTEM_URI_PUBLIC="https://${{ needs.deploy-controller.outputs.gateway_url }}:16005"; export OWANALYTICS_SYSTEM_URI_PUBLIC="https://${{ needs.deploy-controller.outputs.gateway_url }}:16009"; export OWSUB_SYSTEM_URI_PUBLIC="https://${{ needs.deploy-controller.outputs.gateway_url }}:16006"; + export OWRRM_SERVICECONFIG_PRIVATEENDPOINT="http://owrrm.wlan.local:16789"; + export OWRRM_SERVICECONFIG_PUBLICENDPOINT="http://${{ needs.deploy-controller.outputs.gateway_url }}:16789"; ./deploy.sh EOF