Skip to content

abikouo/ansible-collection-virt-lightning

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Virt-Lightning's Ansible collection

Purpose

This module extends Ansible feature to provide two additional plugins. These plugins allow you to consume the virt-lightning inventory and manage new virtual machine:

Example

---
- hosts: localhost
  collections:
    - virt_lightning.virt_lightning
  tasks:
    - name: Create the Debian 10 VM
      vm:
        distro: debian-10
        name: myvm
        state: present

    - name: Refresh inventory to ensure new instance exists in inventory
      meta: refresh_inventory

    - debug: var=hostvars.myvm
    - name:
      command: uname -a
      delegate_to: myvm

    - name: Destroy the VM
      vm:
        name: myvm
        state: absent

Requirements

  • Libvirt
  • Linux

VirtLightning should already be installed in your virtualenv, the following command should not raise any error: python -m virt_lightning.virt_lightning

If it's not the case, just follow the installation procedure here: https://virt-lightning.github.io/virt-lightning/

Installation

ansible-galaxy collection install virt_lightning.virt_lightning

You can test your installation with the two samples playbooks.

About

Ansible Collection that provides an inventory and module plugin

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%