Metadata-Version: 2.1
Name: molecule-kubevirt
Version: 0.0.5
Summary: Molecule aids in the development and testing of Ansible roles
Home-page: https://github.com/jseguillon/molecule-kubevirt
Author: Joël Séguillon
Author-email: joel.seguillon@gmail.com
Maintainer: Joël Séguillon
Maintainer-email: joel.seguillon@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/jseguillon/molecule-kubevirt/issues
Project-URL: Release Management, https://github.com/jseguillon/molecule-kubevirt/releases
Project-URL: CI, https://github.com/jseguillon/molecule-kubevirt/actions
Project-URL: Code of Conduct, https://docs.ansible.com/ansible/latest/community/code_of_conduct.html
Project-URL: Documentation, https://molecule.readthedocs.io
Project-URL: Discussions, https://github.com/ansible-community/molecule/discussions
Project-URL: Source Code, https://github.com/jseguillon/molecule-kubevirt
Keywords: ansible,kubevirt,testing,molecule
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Provides-Extra: docs
Provides-Extra: lint
Provides-Extra: test
License-File: LICENSE

************************
Molecule KubeVirt Plugin
************************

.. image:: https://badge.fury.io/py/molecule-kubevirt.svg
   :target: https://badge.fury.io/py/molecule-kubevirt
   :alt: PyPI Package

.. image:: https://github.com/jseguillon/molecule-kubevirt/workflows/tox/badge.svg
   :target: https://github.com/jseguillon/molecule-kubevirt/actions

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/python/black
   :alt: Python Black Code Style

.. image:: https://img.shields.io/badge/license-MIT-brightgreen.svg
   :target: LICENSE
   :alt: Repository License

Molecule KubeVirt Plugin is designed to allow use of KubeVirt_ containers for provisioning test resources.

**Very alpha version - All configuration fields and behaviours may be subject to breaking changes**

.. _`KubeVirt`: https://kubevirt.io

Scope
=====

Molecule-kubevirt enables running ansible roles tests in a Kubernetes cluster.

Usage
=====

To use this plugin, you'll need to set the ``driver`` and ``platform`` variables in your ``molecule.yml``:

.. code-block:: yaml

  driver:
    name: kubevirt
  platforms:
    - name: instance
      image: quay.io/kubevirt/fedora-cloud-container-disk-demo

Installation
============

Driver
------

This driver supports Ansible 2, 3 and 4.

.. code-block:: shell

  # Ansible >2
  python3 -m pip install molecule-kubevirt

  # Ansible 2
  python3 -m pip install molecule-kubevirt 'openshift<0.12.0' 'kubernetes<12.0'


KubeVirt Installation
---------------------

Follow KubeVirt guides for `kind <https://kubevirt.io/quickstart_kind/>`_, `minkube <https://kubevirt.io/quickstart_minikube/>`_, or `cloud providers <https://kubevirt.io/quickstart_cloud/>`_


SSH access
==========

By default, the driver connects onto ssh via VirtualMachineInstance Pod ip and molecule needs to be able to ssh directly to Pod ip:

* if running local Kubernetes with kind:

.. code-block:: shell

  IP=$(docker container inspect kind-control-plane --format '{{ .NetworkSettings.Networks.kind.IPAddress }}')
  sudo ip route add 10.244.0.0/16 via $IP # Linux
  # sudo route -n add 10.244.0.0/16 $IP # MacOSX

* if running local Kubernetes with minikube:

.. code-block:: shell

  sudo ip route add 172.17.0.0/16 via $(minikube ip)
  # sudo route -n add 172.17.0.0/16 $(minikube ip) # MacOSX

* if running molecule inside the target Kubernetes cluster, routing is ensured by CNI.

A Kubernetes Service can de created by the driver for SSH access. Current supported Services are ClusterIP and NodePort.

NodePort
--------

NodePort can be set. Static nodePort can be defined, also host target for port can be set:

.. code-block:: yaml

  ssh_service:
    type: NodePort
    # optional static port
    nodePort: 32569
    # host where nodePort can be reached
    nodePort_host: localhost

ClusterIP
---------

Default SSH Service is ClusterIP and a static clusterIP can be set:

.. code-block:: yaml

  ssh_service:
    type: ClusterIP
    clusterIP: 10.96.102.231

Molecule then needs to be able to ssh on the ClusterIP ip:

* if running local Kubernetes with Kind:

.. code-block:: shell

  IP=$(docker container inspect kind-control-plane   --format '{{ .NetworkSettings.Networks.kind.IPAddress }}')
  sudo ip route add 10.96.0.0/12 via $IP # Linux
  # sudo route -n add 10.96.0.0/12 $IP # MacOSX

* if running local Kubernetes with Minikube, no known solution yet.
* if running molecule inside the target Kubernetes cluster, routing is ensured by CNI.


Virtual machines customisation
==============================

Virtual machines can be customised using `domain`, `volumes`, `networks` and `user_data`.

Since the driver already sets some values for molecule to start VMs with no customisation, values set in those fields will be merged with default configuration.


Full example
------------

VirtualMachines setup can be fine tuned:

* `annotations` is empty by default
* `domain` is combined recursive with default, defaults lists are prepend
* `user_data` cloud-config is combined recursive with default, defaults lists are prepend
* `volumes` are appended to defaults
* `networks` is empty by default

This example configures a specific network, adds a disk backed by an empty volume, then disk is formated and mounted via cloud config:

.. code-block:: yaml

    # ask for static IP with Calico
    annotations:
      - cni.projectcalico.org/ipAddrs: "[\"10.244.25.25\"]"
    # combine domain to default
    domain:
      devices:
        disks:
          # add a new disk
          - name: emptydisk
            disk:
              bus: virtio
        interfaces:
          # prefer masquerade instead of default bridge
          - masquerade: {}
            name: default
    networks:
      - name: default
        # prefer multus instead of pod network as first network
        multus:
          default: true
          networkName: macvlan-test
    volumes:
      - name: emptydisk
        # create a disk inside the VM Pod
        # can also be backed by PVC, hotspath, etc...
        emptyDisk:
          capacity: 2Gi
    # custom cloud config - additional disks starts at index 3
    # because both boot and cloud-config disks are created by driver
    # therefore example additional disk is named 'vd**c**'
    user_data:
      fs_setup:
        - label: data_disk
          filesystem: 'ext4'
          device: /dev/vdc
          overwrite: true
      mounts:
       - [ /dev/vdc, /var/lib/software, "auto", "defaults,nofail", "0", "0" ]

Please take a look at KubeVirt examples to get more information about more uses cases including PersistenVolumes, Multus, Multi node bridge, and more.

Run from inside Kubernetes cluster
==================================

You can run this driver with a container running tox and/or molecule. Take a look at:

* Dockerfile_ as a base image
* test-rolebinding_ file for ServiceAccount example
* github_workflow_ in step named "Launch test" for a Kubernetes Job running tox

.. _`test-rolebinding`: /tools/test-rolebinding.yaml
.. _`Dockerfile`: /tools/Dockerfile
.. _`github_workflow`: .github/workflows/tox.yml

Demo
====

Testing nginx ansible role with KubeVirt, via github actions: `jseguillon/ansible-role-nginx <https://github.com/jseguillon/ansible-role-nginx>`_


Get Involved
============

* Join us in the ``#ansible-molecule`` channel on `Freenode`_.
* Join the discussion in `molecule-users Forum`_.
* Join the community working group by checking the `wiki`_.
* Want to know about releases, subscribe to `ansible-announce list`_.
* For the full list of Ansible email Lists, IRC channels see the
  `communication page`_.

.. _`Freenode`: https://freenode.net
.. _`molecule-users Forum`: https://groups.google.com/forum/#!forum/molecule-users
.. _`wiki`: https://github.com/ansible/community/wiki/Molecule
.. _`ansible-announce list`: https://groups.google.com/group/ansible-announce
.. _`communication page`: https://docs.ansible.com/ansible/latest/community/communication.html

.. _license:

License
=======

The `MIT`_ License.

.. _`MIT`: https://github.com/jseguillon/molecule-kubevirt/blob/master/LICENSE

The logo is licensed under the `Creative Commons NoDerivatives 4.0 License`_.

If you have some other use in mind, contact us.

.. _`Creative Commons NoDerivatives 4.0 License`: https://creativecommons.org/licenses/by-nd/4.0/


