Merge "Add VNF descriptor for vIMS testcase"
[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
25     - os_image:
26         name: yardstick-{{ release }}-kernel
27         is_public: yes
28         disk_format: qcow2
29         container_format: bare
30         filename: "{{ CLOUD_KERNEL }}"
31
32     - set_fact:
33         image_properties:
34           kernel_id: "{{ GLANCE_KERNEL_ID }}"
35           os_command_line: "{{ command_line }}"
36
37     - set_fact:
38         image_properties: "{{ image_properties|combine({'hw_mem_page_size': 'large'} }}"
39       when: fdio
40
41     - set_fact:
42         image_properties: "{{ image_properties|combine({'hw_firmware_type': HW_FIRMWARE_TYPE} }}"
43       when: HW_FIRMWARE_TYPE
44
45     - os_image:
46         name: yardstick-image
47         is_public: yes
48         disk_format: qcow2
49         container_format: bare
50         filename: "{{ QCOW2_IMAGE }}"
51         properties: "{{ image_properties }}"
52       environment: "{{ openrc }}"
53
54     - os_image_facts:
55         name: yardstick-image
56       environment: "{{ openrc }}"