Initial commit
This commit is contained in:
commit
9e4f2a6de5
|
@ -0,0 +1,7 @@
|
||||||
|
# Ansible Arch Linux Libvirt Lab
|
||||||
|
|
||||||
|
This playbook is intended to help automate the deployment of Arch Linux guests to libvirt on localhost.
|
||||||
|
|
||||||
|
This exists mainly as an excercise while I teach myself ansible, and is mostly a reimplementation of this article: gitea@git.thurstylark.com:thurstylark/ansible-arch-libvirt-lab.git
|
||||||
|
|
||||||
|
As always, patches welcome!
|
|
@ -0,0 +1,17 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
- name: Deploys VM based on cloud image
|
||||||
|
hosts: localhost
|
||||||
|
gather_facts: yes
|
||||||
|
become: yes
|
||||||
|
vars:
|
||||||
|
vm: arch-lab01
|
||||||
|
cleanup: yes
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: KVM Provision role
|
||||||
|
include_role:
|
||||||
|
name: kvm_provision
|
||||||
|
vars:
|
||||||
|
vm_name: "{{ vm }}"
|
||||||
|
cleanup_tmp: "{{ cleanup }}"
|
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
base_image_name: Arch-Linux-x86_64-basic.qcow2
|
||||||
|
base_image_url: https://geo.mirror.pkgbuild.com/images/latest/{{ base_image_name }}
|
||||||
|
libvirt_pool_dir: "/var/lib/libvirt/images"
|
||||||
|
vm_name: arch-lab
|
||||||
|
vm_vcpus: 2
|
||||||
|
vm_ram_mb: 2048
|
||||||
|
vm_net: default
|
||||||
|
vm_root_pass: letmein
|
||||||
|
cleanup_tmp: no
|
|
@ -0,0 +1,63 @@
|
||||||
|
---
|
||||||
|
# tasks file for kvm_provision
|
||||||
|
|
||||||
|
- name: Ensure prereqs are installed
|
||||||
|
package:
|
||||||
|
name:
|
||||||
|
- guestfs-tools
|
||||||
|
- libvirt-python
|
||||||
|
state: present
|
||||||
|
become: yes
|
||||||
|
|
||||||
|
- name: Get VMs list
|
||||||
|
virt:
|
||||||
|
command: list_vms
|
||||||
|
register: existing_vms
|
||||||
|
changed_when: no
|
||||||
|
|
||||||
|
- name: Create VM if not exists
|
||||||
|
block:
|
||||||
|
|
||||||
|
- name: Download base image
|
||||||
|
get_url:
|
||||||
|
url: "{{ base_image_url }}"
|
||||||
|
dest: "/tmp/{{ base_image_name }}"
|
||||||
|
|
||||||
|
- name: Copy base image to libvirt storage pool
|
||||||
|
copy:
|
||||||
|
src: "/tmp/{{ base_image_name }}"
|
||||||
|
dest: "{{ libvirt_pool_dir }}/{{ vm_name }}.qcow2"
|
||||||
|
force: no
|
||||||
|
remote_src: yes
|
||||||
|
mode: 0660
|
||||||
|
become: yes
|
||||||
|
register: copy_results
|
||||||
|
|
||||||
|
- name: Customize image
|
||||||
|
command: |
|
||||||
|
virt-customize -a {{ libvirt_pool_dir }}/{{ vm_name }}.qcow2 \
|
||||||
|
--hostname {{ vm_name }} \
|
||||||
|
--root-password password:{{ vm_root_pass }}
|
||||||
|
when: copy_results is changed
|
||||||
|
|
||||||
|
- name: Define VM
|
||||||
|
virt:
|
||||||
|
command: define
|
||||||
|
xml: "{{ lookup('template', 'vm-template.xml.j2') }}"
|
||||||
|
|
||||||
|
when: "vm_name not in existing_vms.list_vms"
|
||||||
|
|
||||||
|
- name: Start new VM
|
||||||
|
virt:
|
||||||
|
name: "{{ vm_name }}"
|
||||||
|
state: running
|
||||||
|
register: vm_start_results
|
||||||
|
until: "vm_start_results is success"
|
||||||
|
retries: 15
|
||||||
|
delay: 2
|
||||||
|
|
||||||
|
- name: Clean up temporary files
|
||||||
|
file:
|
||||||
|
path: "/tmp/{{ base_image_name }}"
|
||||||
|
state: absent
|
||||||
|
when: cleanup_tmp | bool
|
|
@ -0,0 +1,136 @@
|
||||||
|
<domain type='kvm'>
|
||||||
|
<name>{{ vm_name }}</name>
|
||||||
|
<memory unit='MiB'>{{ vm_ram_mb }}</memory>
|
||||||
|
<vcpu placement='static'>{{ vm_vcpus }}</vcpu>
|
||||||
|
<os>
|
||||||
|
<type arch='x86_64' machine='pc-q35-7.1'>hvm</type>
|
||||||
|
<boot dev='hd'/>
|
||||||
|
</os>
|
||||||
|
<features>
|
||||||
|
<acpi/>
|
||||||
|
<apic/>
|
||||||
|
<vmport state='off'/>
|
||||||
|
</features>
|
||||||
|
<cpu mode='host-model' check='partial'/>
|
||||||
|
<clock offset='utc'>
|
||||||
|
<timer name='rtc' tickpolicy='catchup'/>
|
||||||
|
<timer name='pit' tickpolicy='delay'/>
|
||||||
|
<timer name='hpet' present='no'/>
|
||||||
|
</clock>
|
||||||
|
<on_poweroff>destroy</on_poweroff>
|
||||||
|
<on_reboot>restart</on_reboot>
|
||||||
|
<on_crash>destroy</on_crash>
|
||||||
|
<pm>
|
||||||
|
<suspend-to-mem enabled='no'/>
|
||||||
|
<suspend-to-disk enabled='no'/>
|
||||||
|
</pm>
|
||||||
|
<devices>
|
||||||
|
<emulator>/usr/bin/qemu-system-x86_64</emulator>
|
||||||
|
<disk type='file' device='disk'>
|
||||||
|
<driver name='qemu' type='qcow2'/>
|
||||||
|
<source file='{{ libvirt_pool_dir }}/{{ vm_name }}.qcow2'/>
|
||||||
|
<target dev='vda' bus='virtio'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
|
||||||
|
</disk>
|
||||||
|
<controller type='usb' index='0' model='qemu-xhci' ports='15'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='sata' index='0'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x1f' function='0x2'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='0' model='pcie-root'/>
|
||||||
|
<controller type='pci' index='1' model='pcie-root-port'>
|
||||||
|
<model name='pcie-root-port'/>
|
||||||
|
<target chassis='1' port='0x10'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='2' model='pcie-root-port'>
|
||||||
|
<model name='pcie-root-port'/>
|
||||||
|
<target chassis='2' port='0x11'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='3' model='pcie-root-port'>
|
||||||
|
<model name='pcie-root-port'/>
|
||||||
|
<target chassis='3' port='0x12'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='4' model='pcie-root-port'>
|
||||||
|
<model name='pcie-root-port'/>
|
||||||
|
<target chassis='4' port='0x13'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x3'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='5' model='pcie-root-port'>
|
||||||
|
<model name='pcie-root-port'/>
|
||||||
|
<target chassis='5' port='0x14'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x4'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='6' model='pcie-root-port'>
|
||||||
|
<model name='pcie-root-port'/>
|
||||||
|
<target chassis='6' port='0x15'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x5'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='pci' index='7' model='pcie-root-port'>
|
||||||
|
<model name='pcie-root-port'/>
|
||||||
|
<target chassis='7' port='0x16'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x6'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='virtio-serial' index='0'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
|
||||||
|
</controller>
|
||||||
|
<controller type='scsi' index='0' model='virtio-scsi'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
|
||||||
|
</controller>
|
||||||
|
<interface type='network'>
|
||||||
|
<source network='{{ vm_net }}'/>
|
||||||
|
<model type='virtio'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
|
||||||
|
</interface>
|
||||||
|
<serial type='pty'>
|
||||||
|
<target type='isa-serial' port='0'>
|
||||||
|
<model name='isa-serial'/>
|
||||||
|
</target>
|
||||||
|
</serial>
|
||||||
|
<console type='pty'>
|
||||||
|
<target type='serial' port='0'/>
|
||||||
|
</console>
|
||||||
|
<channel type='unix'>
|
||||||
|
<target type='virtio' name='org.qemu.guest_agent.0'/>
|
||||||
|
<address type='virtio-serial' controller='0' bus='0' port='1'/>
|
||||||
|
</channel>
|
||||||
|
<channel type='spicevmc'>
|
||||||
|
<target type='virtio' name='com.redhat.spice.0'/>
|
||||||
|
<address type='virtio-serial' controller='0' bus='0' port='2'/>
|
||||||
|
</channel>
|
||||||
|
<input type='tablet' bus='usb'>
|
||||||
|
<address type='usb' bus='0' port='1'/>
|
||||||
|
</input>
|
||||||
|
<input type='mouse' bus='ps2'/>
|
||||||
|
<input type='keyboard' bus='ps2'/>
|
||||||
|
<graphics type='spice' autoport='yes'>
|
||||||
|
<listen type='address'/>
|
||||||
|
<image compression='off'/>
|
||||||
|
</graphics>
|
||||||
|
<sound model='ich9'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x1b' function='0x0'/>
|
||||||
|
</sound>
|
||||||
|
<audio id='1' type='spice'/>
|
||||||
|
<video>
|
||||||
|
<model type='vga' vram='16384' heads='1' primary='yes'/>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0'/>
|
||||||
|
</video>
|
||||||
|
<redirdev bus='usb' type='spicevmc'>
|
||||||
|
<address type='usb' bus='0' port='2'/>
|
||||||
|
</redirdev>
|
||||||
|
<redirdev bus='usb' type='spicevmc'>
|
||||||
|
<address type='usb' bus='0' port='3'/>
|
||||||
|
</redirdev>
|
||||||
|
<memballoon model='virtio'>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
|
||||||
|
</memballoon>
|
||||||
|
<rng model='virtio'>
|
||||||
|
<backend model='random'>/dev/urandom</backend>
|
||||||
|
<address type='pci' domain='0x0000' bus='0x07' slot='0x00' function='0x0'/>
|
||||||
|
</rng>
|
||||||
|
</devices>
|
||||||
|
</domain>
|
||||||
|
|
Loading…
Reference in New Issue