Feat: init nfs client role

This commit is contained in:
2022-03-09 14:17:07 +01:00
parent 19658ae596
commit a4688b6f99
12 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
*********************************
Vagrant driver installation guide
*********************************
Requirements
============
* Vagrant
* Virtualbox, Parallels, VMware Fusion, VMware Workstation or VMware Desktop
Install
=======
Please refer to the `Virtual environment`_ documentation for installation best
practices. If not using a virtual environment, please consider passing the
widely recommended `'--user' flag`_ when invoking ``pip``.
.. _Virtual environment: https://virtualenv.pypa.io/en/latest/
.. _'--user' flag: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
.. code-block:: bash
$ pip install 'molecule_vagrant'

View File

@@ -0,0 +1,24 @@
---
- name: Converge
hosts: all
become: yes
vars:
- shares:
- mount_point: /media/nfs/default
server: test.lan
export: /test
options: defaults
- mount_point: /media/nfs/other
server: test.lan
export: /other
options: defaults
pre_tasks:
- name: Update apt cache
apt:
update_cache: yes
tasks:
- name: "Include nfs_client"
include_role:
name: "nfs_client"

View File

@@ -0,0 +1,19 @@
---
dependency:
name: galaxy
driver:
name: vagrant
provider:
name: virtualbox
platforms:
- name: Debian
box: "debian/bullseye64"
pre_build_image: true
provisioner:
name: ansible
verifier:
name: testinfra
options:
sudo: true
v: 3

View File

@@ -0,0 +1,22 @@
"""PyTest Fixtures."""
from __future__ import absolute_import
import os
import pytest
def pytest_runtest_setup(item):
"""Run tests only when under molecule with testinfra installed."""
try:
import testinfra
except ImportError:
pytest.skip("Test requires testinfra", allow_module_level=True)
if "MOLECULE_INVENTORY_FILE" in os.environ:
pytest.testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
else:
pytest.skip(
"Test should run only from inside molecule.", allow_module_level=True
)

View File

@@ -0,0 +1,7 @@
"""Role testing files using testinfra."""
import pytest
def test_installed_packages(host):
nfs_common = host.package("nfs-common")
assert nfs_common.is_installed