Merge "Fix multiport/scale-out baremetal ansible scripts"
[yardstick.git] / ansible / roles / clean_images / tasks / main.yml
1 # Copyright (c) 2017 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - name: Get all images
16   shade_api:
17     method: search_images
18     fact_name: openstack_images
19     args:
20       - ~
21   environment: "{{ openrc }}"
22
23 - debug:
24     var: openstack_images
25
26 - set_fact:
27     images_to_clean: "{{ openstack_images|map(attribute='name')|select('search', 'yardstick|cirros|Ubuntu-14\\.04')|list }}"
28
29 - debug:
30     var: images_to_clean
31
32 - name: Cleanup images
33   os_image:
34     state: absent
35     name: "{{ item }}"
36   with_items: "{{ images_to_clean }}"
37   environment: "{{ openrc }}"
38