Fix owrrm private endpoint in Docker Compose deployment workflows

Signed-off-by: Johann Hoffmann <johann.hoffmann@mailbox.org>
This commit is contained in:
Johann Hoffmann
2022-08-04 16:03:31 +02:00
parent 6cbccd04a7
commit 98b9bde0ff
2 changed files with 2 additions and 2 deletions

View File

@@ -162,7 +162,7 @@ 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_PRIVATEENDPOINT="http://owrrm.wlan.local:17007";
export OWRRM_SERVICECONFIG_PUBLICENDPOINT="http://${{ steps.set_outputs.outputs.gateway_url }}:16789";
./deploy.sh
EOF

View File

@@ -154,7 +154,7 @@ 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_PRIVATEENDPOINT="http://owrrm.wlan.local:17007";
export OWRRM_SERVICECONFIG_PUBLICENDPOINT="http://${{ needs.deploy-controller.outputs.gateway_url }}:16789";
./deploy.sh
EOF