summaryrefslogtreecommitdiffstats
path: root/jjb/dovetail/dovetail-cleanup.sh
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2016-09-21 06:36:38 -0400
committerMatthewLi <matthew.lijun@huawei.com>2016-09-22 21:33:47 -0400
commitb26c94f19a8fe7807837ee2cf0c4779db206e082 (patch)
tree27a53b0d199fce4fb720d30e0576cd3855affcf4 /jjb/dovetail/dovetail-cleanup.sh
parentef6abdcdb6f03c944bd49fc71d501ea3addf7546 (diff)
dovetail: ci job added
JIRA: DOVETAIL-14 1)ci jobs are added 2)not daily/weekly run by now, only manually triggerd, the manually trigger progress should be controlled not to disturb the normal ci running progres 3)pods/platforms used are just examples to let the tool run, more platforms will be supported. Change-Id: I865e011ceb5b9957e7b58065cd231b26caf7ab87 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'jjb/dovetail/dovetail-cleanup.sh')
-rwxr-xr-xjjb/dovetail/dovetail-cleanup.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/jjb/dovetail/dovetail-cleanup.sh b/jjb/dovetail/dovetail-cleanup.sh
new file mode 100755
index 000000000..297222bb3
--- /dev/null
+++ b/jjb/dovetail/dovetail-cleanup.sh
@@ -0,0 +1,20 @@
+#!/bin/bash
+[[ $CI_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
+
+echo "Cleaning up docker containers/images..."
+# Remove previous running containers if exist
+if [[ ! -z $(docker ps -a | grep opnfv/dovetail) ]]; then
+ echo "Removing existing opnfv/dovetail containers..."
+ docker ps -a | grep opnfv/dovetail | awk '{print $1}' | xargs docker rm -f >$redirect
+fi
+
+# Remove existing images if exist
+if [[ ! -z $(docker images | grep opnfv/dovetail) ]]; then
+ echo "Docker images to remove:"
+ docker images | head -1 && docker images | grep opnfv/dovetail
+ image_tags=($(docker images | grep opnfv/dovetail | awk '{print $2}'))
+ for tag in "${image_tags[@]}"; do
+ echo "Removing docker image opnfv/dovetail:$tag..."
+ docker rmi opnfv/dovetail:$tag >$redirect
+ done
+fi