mono-infrastructure/ansible/playbooks/init-rocky-install-kvm-hosts.yml

61 lines
1.4 KiB
YAML
Raw Normal View History

2020-12-10 18:19:24 +00:00
---
# Creates a standalone KVM hosts
# Created: @SherifNagy
# Modified to current standards: @nazunalika
- name: Configure KVM host
hosts: kvm
2020-12-10 18:19:24 +00:00
become: true
pre_tasks:
- name: Check if ansible cannot be run here
stat:
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
2020-12-10 18:19:24 +00:00
tasks:
- name: Check for CPU Virtualization
shell: "set -o pipefail; lscpu | grep -i virtualization"
2020-12-10 18:19:24 +00:00
register: result
changed_when: false
2020-12-10 18:19:24 +00:00
failed_when: "result.rc != 0"
# Install KVM packages
- name: Installing KVM Packages
package:
name:
- qemu-kvm
- libvirt
- libvirt-python
- libguestfs-tools
- virt-install
2020-12-10 18:19:24 +00:00
state: present
- name: Enable and Start libvirtd
systemd:
name: libvirtd
state: started
2020-12-11 07:39:15 +00:00
enabled: true
2020-12-10 18:19:24 +00:00
- name: Verify KVM module is loaded
shell: "set -o pipefail; lsmod | grep -i kvm"
2020-12-10 18:19:24 +00:00
register: result
changed_when: false
2020-12-10 18:19:24 +00:00
failed_when: "result.rc != 0"
post_tasks:
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
2020-12-11 07:39:15 +00:00
mode: '0644'
2020-12-11 21:00:14 +00:00
owner: root
2020-12-11 07:39:15 +00:00
group: root
...