blob: 86a9e60cc8f5e3d77376a5e3ea01614c085fe20f (
plain)
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
|
---
- hosts: qemu
gather_facts: false
connection: local
vars:
vyos_platform: QEMU
vyos_format: qcow2
vyos_qemu_img: "/tmp/vyos-{{ vyos_version }}{{ ci_tag | default() }}-qemu.qcow2"
vyos_output_img: "{{ vyos_qemu_img }}"
cloud_init: "false"
cloud_init_ds_string: "{{ cloud_init_ds | default('NoCloud,ConfigDrive,None') }}"
cloud_init_ds_list: "{{ cloud_init_ds_string.split(',') }}"
roles:
- install-packages
- load-modules
- download-iso
- mount-iso
- get-version
- create-disk
- attach-loop-device
- setup-root-partition
- install-image
- mount-root-fs
- install-config
- install-grub
- install-persistence-conf
- install-cloud-init-wrapper
- fstrim
- unmount-pre
- create-pxe-archive
- unmount-all
- qemu-qcow2
- cleanup-ending
- release
|