From 52c0270a53cb3376f3a24ccb7804ecc1d431bc78 Mon Sep 17 00:00:00 2001 From: Larry Smith Jr Date: Mon, 27 Apr 2020 13:45:03 -0400 Subject: [PATCH] Updated Molecule Vagrant boxes for testing - We need to test against CentOS, Fedora, and Ubuntu - Added my Vagrant boxes to ensure that we know what is included, etc. - This ensures we can at least test these distros locally --- molecule/default/molecule.yml | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml index a293261..cc232f2 100644 --- a/molecule/default/molecule.yml +++ b/molecule/default/molecule.yml @@ -5,13 +5,27 @@ driver: name: virtualbox lint: yamllint . && flake8 && ansible-lint platforms: - - name: Fedora-Molecule-LVM - box: fedora/31-cloud-base - cpu: 2 - memory: 2048 + - name: CentOS-Molecule-LVM + box: mrlesmithjr/centos7 provider_override_args: - "persistent_storage.enabled = true" - - "persistent_storage.location = 'molecule-lvm.vdi'" + - "persistent_storage.location = 'centos-molecule-lvm.vdi'" + - "persistent_storage.size = 100" + - "persistent_storage.mount = false" + - "persistent_storage.diskdevice = '/dev/sdb'" + - name: Fedora-Molecule-LVM + box: mrlesmithjr/fedora31 + provider_override_args: + - "persistent_storage.enabled = true" + - "persistent_storage.location = 'fedora-molecule-lvm.vdi'" + - "persistent_storage.size = 100" + - "persistent_storage.mount = false" + - "persistent_storage.diskdevice = '/dev/sdb'" + - name: Ubuntu-Molecule-LVM + box: mrlesmithjr/bionic64 + provider_override_args: + - "persistent_storage.enabled = true" + - "persistent_storage.location = 'ubuntu-molecule-lvm.vdi'" - "persistent_storage.size = 100" - "persistent_storage.mount = false" - "persistent_storage.diskdevice = '/dev/sdb'"