summaryrefslogtreecommitdiffstats
path: root/jjb/yardstick
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2015-12-09 10:23:41 +0100
committerjose.lausuch <jose.lausuch@ericsson.com>2015-12-09 12:05:16 +0100
commit70d27c86a50340abe962a95c0da261f071c340f5 (patch)
treef465daa22fd919f6748e318d32338e68c1cee206 /jjb/yardstick
parent0d94e8d4f75691b75a8834915000381949b61cf3 (diff)
Add yardstick docker cleanup builder in jjob
Change-Id: I5c6bd5a086b03ba93e62403ea87d176e20384446 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'jjb/yardstick')
-rw-r--r--jjb/yardstick/yardstick.yml46
1 files changed, 28 insertions, 18 deletions
diff --git a/jjb/yardstick/yardstick.yml b/jjb/yardstick/yardstick.yml
index 8a6edbb4c..b6a02dca3 100644
--- a/jjb/yardstick/yardstick.yml
+++ b/jjb/yardstick/yardstick.yml
@@ -169,6 +169,7 @@
- 'yardstick-trigger-{pod}'
builders:
+ - 'yardstick-cleanup'
- 'yardstick-fetch-os-creds'
- 'yardstick-daily'
@@ -188,24 +189,7 @@
echo "Yardstick: Run benchmark test suites ..."
- # Remove old containers
- docker ps | grep opnfv/yardstick |\
- awk '{print $1}' | xargs -r docker stop &>/dev/null
- docker ps -a | grep opnfv/yardstick |\
- awk '{print $1}' | xargs -r docker rm &>/dev/null
-
- # Remove existing images if exist
- if [[ ! -z $(docker images | grep opnfv/yardstick) ]]; then
- echo "Docker images to remove:"
- docker images | head -1 && docker images | grep opnfv/yardstick
- image_tags=($(docker images | grep opnfv/yardstick | awk '{print $2}'))
- for tag in "${image_tags[@]}"; do
- echo "Removing docker image opnfv/yardstick:$tag..."
- docker rmi opnfv/yardstick:$tag
- done
- fi
-
- # Make sure we have latest image
+ # Pull the latest image
docker pull opnfv/yardstick
# Test suites to run
@@ -231,6 +215,32 @@
- shell:
!include-raw ../../utils/fetch_os_creds.sh
+- builder:
+ name: yardstick-cleanup
+ builders:
+ - shell: |
+ #!/bin/bash
+
+ echo "Cleaning up docker containers/images..."
+
+ # Remove previous running containers if exist
+ if [[ ! -z $(docker ps -a | grep opnfv/yardstick) ]]; then
+ echo "Removing existing opnfv/yardstick containers..."
+ docker ps | grep opnfv/yardstick | awk '{print $1}' | xargs docker stop
+ docker ps -a | grep opnfv/yardstick | awk '{print $1}' | xargs docker rm
+ fi
+
+ # Remove existing images if exist
+ if [[ ! -z $(docker images | grep opnfv/yardstick) ]]; then
+ echo "Docker images to remove:"
+ docker images | head -1 && docker images | grep opnfv/yardstick
+ image_tags=($(docker images | grep opnfv/yardstick | awk '{print $2}'))
+ for tag in "${image_tags[@]}"; do
+ echo "Removing docker image opnfv/yardstick:$tag..."
+ docker rmi opnfv/yardstick:$tag
+ done
+ fi
+
########################
# parameter macros
########################