blob: d449926ebc8c8645beb790832139b8eb7583785c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
---
- name: preperations and sanity checks
hosts: "{{ install_hostname }}"
gather_facts: no
tasks:
- name: check if the installee belongs to the kvmguests group
fail:
msg: "the host '{{ install_hostname }}' does not belong to the group 'kvmguests'"
when:
- "'kvmguests' not in group_names"
- name: check if the vm_host belongs to the kvmhosts group
fail:
msg: "the host '{{ vm_host }}' does not belong to the group 'kvmhosts'"
when:
- "'kvmhosts' not in hostvars[vm_host].group_names"
# TODO: add some more sanity checks
- name: create temporary host group for vm host
add_host:
name: "{{ vm_host }}"
inventory_dir: "{{ inventory_dir }}"
group: _vmhost_
- name: basic installation
hosts: _vmhost_
roles:
- role: vm/install
- name: wait for new vm to start up
hosts: "{{ install_hostname }}"
gather_facts: no
tasks:
## TODO: find a better way to fetch host key of new VMs
- name: disable ssh StrictHostKeyChecking for the next step
set_fact:
ansible_ssh_extra_args: -o StrictHostKeyChecking=no
- name: wait for vm to start up
wait_for_connection:
delay: 5
timeout: 120
- name: reenable StrictHostKeyChecking
set_fact:
ansible_ssh_extra_args: ""
- name: apply basic VM configuration roles
hosts: "{{ install_hostname }}"
pre_tasks:
- name: make sure to update cached facts
setup:
roles:
- role: vm/grub
when: install_distro in ['debian', 'ubuntu']
- role: vm/network
when: install_distro in ['debian', 'ubuntu']
- role: vm/guest
when: install_distro in ['debian', 'ubuntu']
- name: run host playbook
vars:
params:
files:
- "../{{ install_environment }}/{{ install_hostname }}.yml"
- "../{{ install_environment }}/{{ install_playbook | default('common') }}.yml"
import_playbook: "{{ q('first_found', params) | first }}"
- name: reboot and wait for VM come back
hosts: "{{ install_hostname }}"
gather_facts: no
roles:
- role: reboot-and-wait
reboot_delay: 10
reboot_timeout: 120
|