hypervisor refinement
This commit is contained in:
42
ansible/roles/hypervisor/tasks/libvirt_dir.yaml
Normal file
42
ansible/roles/hypervisor/tasks/libvirt_dir.yaml
Normal file
@ -0,0 +1,42 @@
|
||||
---
|
||||
|
||||
- name: Format and mount the libvirt disk if it is not root
|
||||
when:
|
||||
- hypervisor.device not in (ansible_mounts | json_query('[?mount == `/`].device'))
|
||||
- hypervisor.device not in (ansible_mounts | json_query('[?mount == `/var/lib/libvirt`].device'))
|
||||
ansible.builtin.include_tasks:
|
||||
file: libvirt_dir_mount.yaml
|
||||
|
||||
- name: Create the libvirt storage directories
|
||||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
owner: libvirt-qemu
|
||||
group: libvirt-qemu
|
||||
mode: '0775'
|
||||
loop:
|
||||
- /var/lib/libvirt/vhds/
|
||||
|
||||
- name: Define additional libvirt storage pools
|
||||
community.libvirt.virt_pool:
|
||||
name: "{{ item.name }}"
|
||||
command: define
|
||||
xml: "{{ lookup('template', 'dir_libvirt_pool.xml.j2') }}"
|
||||
loop:
|
||||
- name: vhds
|
||||
path: /var/lib/libvirt/vhds/
|
||||
|
||||
- name: Create additional libvirt storage pools
|
||||
community.libvirt.virt_pool:
|
||||
name: "{{ item }}"
|
||||
command: build
|
||||
loop:
|
||||
- vhds
|
||||
|
||||
- name: Start additional libvirt storage pools
|
||||
community.libvirt.virt_pool:
|
||||
name: "{{ item }}"
|
||||
state: active
|
||||
autostart: true
|
||||
loop:
|
||||
- vhds
|
Reference in New Issue
Block a user