KVM

Document Control

TODO:

  • Overall structure.
  • Initial draft complete
  • Testing
  • Ready

Ansible Role Ansible Quality Score Build Status GitHub issues GitHub last commit

User Story: KVM

As a: UNIX and Linux system administrator

I want to: install KVM

So that: create virtual machines.

Using the role

Using the role in a playbook

Using the role in a playbook
---
- name: Install kvm
  hosts: all

  tasks:
    - name: kvm is configured
      import_role:
        name: crivetimihai.kvm
      vars:
        kvm_enable_service: true
        kvm_enable_selinux: true
        kvm_users:
         - user: devops
           group: libvirt
      tags: kvm
# Install the role
ansible-galaxy install crivetimihai.kvm

# Run the playbook
ansible-playbook kvm-playbook.yml

Last update: 2020-02-02