Add owrrm config env variables for Docker Compose deploy script (#685)

Signed-off-by: Johann Hoffmann <johann.hoffmann@mailbox.org>
This commit is contained in:
Johann Hoffmann
2022-07-28 10:13:29 +02:00
committed by GitHub
parent 7c6667ac3f
commit 6cbccd04a7
2 changed files with 4 additions and 0 deletions

View File

@@ -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

View File

@@ -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