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

68 lines
1.4 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
- libjemalloc2
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
replace:
dest: /etc/default/libvirtd
regexp: '#libvirtd_opts=""'
replace: 'libvirtd_opts="--listen"'
notify: restart libvirtd
2020-01-07 10:45:12 -05:00
- name: enable services
service:
name: "{{ item }}"
enabled: yes
state: started
with_items:
- vhostmd
- name: disable PVC-managed services
2019-06-09 00:11:06 -04:00
service:
name: "{{ item }}"
enabled: no
with_items:
- libvirtd
2019-06-12 21:06:06 -04:00
- meta: flush_handlers