pvc-ansible/roles/pvc/tasks/libvirt/main.yml

86 lines
1.9 KiB
YAML
Raw Normal View History

2023-09-01 15:42:19 -04:00
---
- name: install libvirt packages
apt:
name:
- libvirt-daemon-system
- qemu-kvm
- qemu-utils
- qemu-block-extra
- vhostmd
- ceph-common
- libguestfs-tools
2023-09-01 15:42:19 -04:00
state: latest
2023-09-01 15:42:20 -04:00
- name: add libvirt user to ceph group
user:
name: libvirt-qemu
groups: ceph
append: yes
- name: add admin users to libvirt groups
user:
name: "{{ item.name }}"
groups: kvm,libvirt
append: yes
with_items: "{{ admin_users }}"
2023-09-01 15:42:19 -04:00
- name: install libvirt configuration
template:
src: libvirt/{{ item }}.j2
dest: /etc/libvirt/{{ item }}
with_items:
- libvirtd.conf
- ceph-secret.xml
notify: restart libvirtd
2023-09-01 15:42:19 -04:00
- include: libvirt/bootstrap.yml
when: bootstrap is defined and bootstrap
run_once: yes
2023-09-01 15:42:19 -04:00
- name: get ceph libvirt secret key
command: ceph auth get-key client.libvirt
register: libvirt_key
2023-09-01 15:42:19 -04:00
- name: define ceph secret
command: virsh secret-define /etc/libvirt/ceph-secret.xml
ignore_errors: true
2023-09-01 15:42:19 -04:00
- name: set ceph libvirt secret value
2023-09-01 15:42:19 -04:00
command: virsh secret-set-value --secret {{ pvc_ceph_storage_secret_uuid }} --base64 {{ libvirt_key.stdout }}
2023-09-01 15:42:19 -04:00
ignore_errors: true
- name: configure libvirt for listening
2023-09-01 15:42:28 -04:00
template:
src: libvirt/libvirtd.default.j2
2023-09-01 15:42:19 -04:00
dest: /etc/default/libvirtd
notify: restart libvirtd
- name: install systemd unit file (override default on Bullseye)
template:
src: libvirt/libvirtd.service.j2
dest: /etc/systemd/system/libvirtd.service
register: systemd
notify: restart libvirtd
- name: reload systemd to apply changes
command: systemctl daemon-reload
when: systemd.changed
- name: start and enable services (not managed by PVC)
2023-09-01 15:42:22 -04:00
service:
name: "{{ item }}"
state: started
enabled: yes
2023-09-01 15:42:22 -04:00
with_items:
- vhostmd
- name: start but disable services (managed by PVC)
2023-09-01 15:42:19 -04:00
service:
name: "{{ item }}"
state: started
2023-09-01 15:42:19 -04:00
enabled: no
with_items:
- libvirtd
2023-09-01 15:42:19 -04:00
- meta: flush_handlers