f28cba784c
We currently have infra limited to 15 CI slaves so on paper having 15 testenv works should be perfect. Except when zuul kills a job while it is running and as a result the client doesn't free the environment, in this case zuul starts a new ci slave but the testenv worker doesn't get freed up until up too 2 hours later(depending on how long its already been running for). Have some spare workers lieing around so that we will be less effected by workers waiting to timeout. Also bump up infras quota to allow for the extra testenvs lieing around. Closes-Bug: #1600787 Change-Id: I48677d65f0c200c9026b97c9b6cd21eaf0d84aaf
20 lines
538 B
Bash
20 lines
538 B
Bash
#!/bin/bash
|
|
|
|
export PUBLIC_IP_NET=8.43.86.0/23
|
|
export PUBLIC_IP_GATWAY=8.43.87.254
|
|
export PUBLIC_IP_FLOATING_START=8.43.87.225
|
|
export PUBLIC_IP_FLOATING_END=8.43.87.253
|
|
|
|
# The total number of testenv-workers running, to allow for timeouts
|
|
# Should be slightly higher then the max number of CI slaves running.
|
|
export TOTALOVBENVS=20
|
|
|
|
export QUOTA_RAM=655360
|
|
export QUOTA_FIPS=20
|
|
export QUOTA_NETS=25
|
|
export QUOTA_PORTS=250
|
|
|
|
export TEBROKERIP=192.168.103.254
|
|
export MIRRORIP=192.168.103.253
|
|
export http_proxy="http://192.168.103.252:3128/"
|