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

79 lines
1.8 KiB
YAML
Raw Normal View History

2019-06-09 00:11:06 -04:00
---
- name: install libvirt packages
apt:
name:
- libvirt-daemon-system
- qemu-kvm
- qemu-utils
- qemu-block-extra
- vhostmd
- ceph-common
- libguestfs-tools
2019-06-09 00:11:06 -04:00
state: latest
2019-06-21 11:40:53 -04:00
- name: add libvirt user to ceph group
user:
name: libvirt-qemu
groups: ceph
append: yes
2019-06-09 00:11:06 -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
2019-06-12 21:06:06 -04:00
- include: libvirt/bootstrap.yml
when: bootstrap is defined and bootstrap
run_once: yes
2019-06-11 13:30:55 -04:00
- name: get ceph libvirt secret key
command: ceph auth get-key client.libvirt
register: libvirt_key
2019-06-09 00:11:06 -04:00
- name: define ceph secret
command: virsh secret-define /etc/libvirt/ceph-secret.xml
ignore_errors: true
2019-06-11 13:30:55 -04:00
- name: set ceph libvirt secret value
2019-06-11 13:38:02 -04:00
command: virsh secret-set-value --secret {{ pvc_ceph_storage_secret_uuid }} --base64 {{ libvirt_key.stdout }}
2019-06-09 00:11:06 -04:00
ignore_errors: true
- name: configure libvirt for listening
2022-01-01 01:50:54 -05:00
template:
src: libvirt/libvirtd.default.j2
2019-06-09 00:11:06 -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)
2020-01-07 10:45:12 -05:00
service:
name: "{{ item }}"
state: started
enabled: yes
2020-01-07 10:45:12 -05:00
with_items:
- vhostmd
- name: start but disable services (managed by PVC)
2019-06-09 00:11:06 -04:00
service:
name: "{{ item }}"
state: started
2019-06-09 00:11:06 -04:00
enabled: no
with_items:
- libvirtd
2019-06-12 21:06:06 -04:00
- meta: flush_handlers