Merge "Add yardstick report for each task"
[yardstick.git] / ansible / image_uploaders / upload_yardstick_image.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 - hosts: yardstick
16
17   tasks:
18     - get_url:
19         url: "{{ CLOUD_IMG_URL }}"
20         dest: "{{ CLOUD_IMAGE }}"
21
22     - name: Extra cloud image kernel
23     - unarchive:
24         asdf:
25
26     - os_image:
27         name: yardstick-{{ release }}-kernel
28         is_public: yes
29         disk_format: qcow2
30         container_format: bare
31         filename: "{{ CLOUD_KERNEL }}"
32
33     - set_fact:
34         image_properties:
35           kernel_id: "{{ GLANCE_KERNEL_ID }}"
36           os_command_line: "{{ command_line }}"
37
38     - set_fact:
39         image_properties: "{{ image_properties|combine({'hw_mem_page_size': 'large'} }}"
40       when: fdio
41
42     - set_fact:
43         image_properties: "{{ image_properties|combine({'hw_firmware_type': HW_FIRMWARE_TYPE} }}"
44       when: HW_FIRMWARE_TYPE
45
46     - os_image:
47         name: yardstick-image
48         is_public: yes
49         disk_format: qcow2
50         container_format: bare
51         filename: "{{ QCOW2_IMAGE }}"
52         properties: "{{ image_properties }}"
53       environment: "{{ openrc }}"
54
55     - os_image_facts:
56         name: yardstick-image
57       environment: "{{ openrc }}"