diff options
author | mbeierl <mark.beierl@dell.com> | 2017-09-08 15:29:55 -0400 |
---|---|---|
committer | mbeierl <mark.beierl@dell.com> | 2017-09-08 15:56:56 -0400 |
commit | d3617e26876bad963afa925620cb85fd6658d77b (patch) | |
tree | 86f2efaa226c00b3632a349844a8b2629f6a36a6 /ci/daily.sh | |
parent | 8969493e12b6573ab0655d88540135a6e9f757b3 (diff) |
Changing Daily to Docker Pull
Changes the daily job to pull images from Docker.io instead
of using docker-compose build to build the image from local
sources.
Reduces the default run time to ~30 minutes unless overridden
in the job definition.
Change-Id: Ib153b66454363f91813dc9c946f6b46156c502bd
JIRA: STORPERF-204
Signed-off-by: mbeierl <mark.beierl@dell.com>
Diffstat (limited to 'ci/daily.sh')
-rwxr-xr-x | ci/daily.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/daily.sh b/ci/daily.sh index 8af8562..51d3fd3 100755 --- a/ci/daily.sh +++ b/ci/daily.sh @@ -45,17 +45,17 @@ do done < $WORKSPACE/ci/job/admin.rc export AGENT_COUNT=${AGENT_COUNT:-$CINDER_NODES} -export BLOCK_SIZES=${BLOCK_SIZES:-1024,16384} +export BLOCK_SIZES=${BLOCK_SIZES:-16384} export STEADY_STATE_SAMPLES=${STEADY_STATE_SAMPLES:-10} export DEADLINE=${DEADLINE:-`expr $STEADY_STATE_SAMPLES \* 3`} export DISK_TYPE=${DISK_TYPE:-unspecified} -export QUEUE_DEPTHS=${QUEUE_DEPTHS:-1,4} +export QUEUE_DEPTHS=${QUEUE_DEPTHS:-4} export POD_NAME=${NODE_NAME:-`hostname`} export SCENARIO_NAME=${DEPLOY_SCENARIO:-none} export TEST_CASE=${TEST_CASE:-snia_steady_state} export VERSION=`echo ${BUILD_TAG#*daily-} | cut -d- -f1` export VOLUME_SIZE=${VOLUME_SIZE:-2} -export WORKLOADS=${WORKLOADS:-ws,wr,rs,rr,rw} +export WORKLOADS=${WORKLOADS:-ws,rs,rw} echo ========================================================================== echo Environment |