Skip to content

Commit

Permalink
Set public host for test envs (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechos authored Sep 15, 2023
1 parent 69f52f5 commit 7a816ed
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/upgrade-nodes-on-test-envs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,20 @@ jobs:
nethermindeth/juno:${{ env.DOCKER_IMAGE_TAG }} \
--db-path /var/lib/juno \
--http \
--http-host 0.0.0.0 \
--http-port $httpPort \
--network $network \
--colour=false \
--pending-poll-interval 2s \
--metrics \
--metrics-host 0.0.0.0 \
--metrics-port $metricsPort \
--pprof \
--pprof-host 0.0.0.0 \
--pprof-port $pprofPort \
--ws \
--ws-host 0.0.0.0 \
--ws-port $((httpPort+1)) \
$ETH_NODE_PARAM
httpPort=$((httpPort+5))
Expand Down Expand Up @@ -115,4 +121,4 @@ jobs:
workflow: Load tests
token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }}
ref: ${{ github.ref }}
inputs: '{"NODE_URL": "http://${{ env.HOST }}:6060", "VUS": "2", "DURATION": "300s"}'
inputs: '{"NODE_URL": "http://${{ env.HOST }}:6060", "VUS": "2", "DURATION": "300s"}'

0 comments on commit 7a816ed

Please sign in to comment.