Merge "Improve daisy download speed by multi-thread tool"
[releng.git] / prototypes / bifrost / playbooks / opnfv-virtual.yaml
1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2016 RedHat and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 ---
10 - hosts: localhost
11   connection: local
12   name: "Setting pre-test conditions"
13   become: yes
14   ignore_errors: yes
15   tasks:
16   - name: Remove pre-existing leases file
17     file: path=/var/lib/misc/dnsmasq.leases state=absent
18 - hosts: localhost
19   connection: local
20   name: "Executes install, enrollment, and testing in one playbook"
21   become: no
22   gather_facts: yes
23   pre_tasks:
24     - name: "Override the ipv4_gateway setting"
25       set_fact:
26          ipv4_gateway: "192.168.122.1"
27   roles:
28     - { role: bifrost-prep-for-install, when: skip_install is not defined }
29   environment:
30     http_proxy: "{{ lookup('env','http_proxy') }}"
31     https_proxy: "{{ lookup('env','https_proxy') }}"
32 - hosts: localhost
33   connection: local
34   name: "Executes install, enrollment, and testing in one playbook"
35   become: yes
36   gather_facts: yes
37   roles:
38     - role: bifrost-keystone-install
39     - role: bifrost-ironic-install
40       cleaning: false
41       testing: true
42     # NOTE(TheJulia): While the next step creates a ramdisk, some elements
43     # do not support ramdisk-image-create as they invoke steps to cleanup
44     # the ramdisk which causes ramdisk-image-create to believe it failed.
45     - role: bifrost-create-dib-image
46       dib_imagename: "{{ http_boot_folder }}/ipa"
47       build_ramdisk: false
48       dib_os_element: "{{ ipa_dib_os_element|default('debian') }}"
49       dib_os_release: "jessie"
50       dib_elements: "ironic-agent {{ ipa_extra_dib_elements | default('') }}"
51       when: create_ipa_image | bool == true
52     - role: bifrost-create-dib-image
53       dib_imagetype: "qcow2"
54       dib_imagename: "{{deploy_image}}"
55       dib_os_element: "{{ lookup('env','DIB_OS_ELEMENT') }}"
56       dib_os_release: "{{ lookup('env', 'DIB_OS_RELEASE') }}"
57       extra_dib_elements: "{{ lookup('env', 'EXTRA_DIB_ELEMENTS') | default('') }}"
58       dib_elements: "vm enable-serial-console simple-init devuser growroot {{ extra_dib_elements }}"
59       dib_packages: "{{ lookup('env', 'DIB_OS_PACKAGES') }}"
60       when: create_image_via_dib | bool == true and transform_boot_image | bool == false
61     - role: bifrost-keystone-client-config
62       # NOTE(hwoarang): This should be ansible_env.SUDO_USER like in the
63       # upstream playbook. However, we run ansible as root (ie with sudo)
64       # so clouds.yaml will be placed in the user's home directory (see
65       # the bifrost-keystone-client-config role) and then ansible will look
66       # for one in /root and fail. As such we hardcode the user to be 'root'.
67       user: "root"
68       clouds:
69         bifrost:
70           config_username: "{{ ironic.keystone.default_username }}"
71           config_password: "{{ ironic.keystone.default_password }}"
72           config_project_name: "baremetal"
73           config_region_name: "{{ keystone.bootstrap.region_name }}"
74           config_auth_url: "{{ keystone.bootstrap.public_url }}"
75   environment:
76     http_proxy: "{{ lookup('env','http_proxy') }}"
77     https_proxy: "{{ lookup('env','https_proxy') }}"
78 - hosts: baremetal
79   name: "Enroll node with Ironic"
80   become: no
81   connection: local
82   roles:
83     - role: ironic-enroll-dynamic
84     - { role: ironic-inspect-node, when: inspect_nodes | default('false') | bool == true }
85 - hosts: baremetal
86   name: "Create configuration drive files and deploy machines"
87   vars:
88     multinode_testing: "{{ inventory_dhcp | bool == true }}"
89   become: no
90   connection: local
91   roles:
92     - role: bifrost-configdrives-dynamic
93     - role: bifrost-deploy-nodes-dynamic
94 - hosts: baremetal
95   name: "Deploy machines."
96   become: no
97   connection: local
98   serial: 1
99   roles:
100     - role: bifrost-prepare-for-test-dynamic