File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,9 @@ jobs:
170
170
- name : Bring up bore
171
171
id : bore
172
172
if : ${{ inputs.operator_type == 'gcp' || inputs.operator_type == 'azure' || inputs.operator_type == 'aws' || inputs.operator_type == 'eks'}}
173
+ env :
174
+ BORE_URL : ${{ secrets.BORE_URL }}
175
+ BORE_SECRET : ${{ secrets.BORE_SECRET }}
173
176
run : |
174
177
bash uid2-shared-actions/scripts/setup_bore.sh
175
178
Original file line number Diff line number Diff line change 3
3
4
4
ROOT=" ."
5
5
6
- docker run --init --rm --network e2e_default ekzhang/bore local --local-host localstack --to bore.pub 5001 > ${ROOT} /bore_localstack.out &
7
- docker run --init --rm --network e2e_default ekzhang/bore local --local-host core --to bore.pub 8088 > ${ROOT} /bore_core.out &
8
- docker run --init --rm --network e2e_default ekzhang/bore local --local-host optout --to bore.pub 8081 > ${ROOT} /bore_optout.out &
6
+ docker run --init --rm --network e2e_default ekzhang/bore local --local-host localstack --to ${BORE_URL} --secret ${BORE_SECRET} 5001 > ${ROOT} /bore_localstack.out &
7
+ docker run --init --rm --network e2e_default ekzhang/bore local --local-host core --to ${BORE_URL} --secret ${BORE_SECRET} 8088 > ${ROOT} /bore_core.out &
8
+ docker run --init --rm --network e2e_default ekzhang/bore local --local-host optout --to ${BORE_URL} --secret ${BORE_SECRET} 8081 > ${ROOT} /bore_optout.out &
9
9
10
10
until [ -f ${ROOT} /bore_localstack.out ] && [ -f ${ROOT} /bore_core.out ] && [ -f ${ROOT} /bore_optout.out ]
11
11
do
You can’t perform that action at this time.
0 commit comments