Decoupling yardstick_verify.sh
[yardstick.git] / tests / ci / clean_images.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB, Huawei Technologies Co.,Ltd and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 # Clean the images and flavor before running yardstick test suites.
12
13 cleanup()
14 {
15     echo
16     echo "========== Cleanup =========="
17
18     if ! glance image-list; then
19         return
20     fi
21
22     for image in $(glance image-list | grep -e cirros-0.3.3 -e yardstick-trusty-server -e Ubuntu-14.04 \
23         -e yardstick-vivid-kernel | awk '{print $2}'); do
24         echo "Deleting image $image..."
25         glance image-delete $image || true
26     done
27
28     nova flavor-delete yardstick-flavor &> /dev/null || true
29 }