mirror of
https://github.com/dev-sec/ansible-collection-hardening
synced 2024-11-10 09:14:18 +00:00
9b32aca0ca
* allow multiple instances for os vm tests Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> * add scheduled trigger to all test actions Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> * use different scenario names Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> * use different scenario names Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> * use different scenario names Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> * use username to create uniqe vms Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> * use compatible name Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> * add explaination Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com> --------- Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com>
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
---
|
|
dependency:
|
|
name: galaxy
|
|
options:
|
|
role-file: molecule/os_hardening/requirements.yml
|
|
driver:
|
|
name: vagrant
|
|
provider:
|
|
name: libvirt
|
|
platforms:
|
|
# we need to name every instance differntly to start multiple VMs on the same host (parallelization)
|
|
# since we also need to use different OS users to run the tests because of how molecule operates,
|
|
# the VM names must be predictable by OS user (to clean up canceled runs)
|
|
- name: "${USER}"
|
|
box: "generic/${MOLECULE_DISTRO}"
|
|
memory: 1024
|
|
cpus: 2
|
|
provisioner:
|
|
name: ansible
|
|
options:
|
|
diff: true
|
|
env:
|
|
ANSIBLE_PIPELINING: "True"
|
|
config_options:
|
|
defaults:
|
|
interpreter_python: auto_silent
|
|
callback_whitelist: profile_tasks, timer, yaml
|
|
verifier:
|
|
name: ansible
|
|
env:
|
|
ANSIBLE_PIPELINING: "True"
|
|
|
|
scenario:
|
|
create_sequence:
|
|
- dependency
|
|
- create
|
|
- prepare
|
|
check_sequence:
|
|
- dependency
|
|
- destroy
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- check
|
|
- destroy
|
|
converge_sequence:
|
|
- dependency
|
|
- create
|
|
- prepare
|
|
- converge
|
|
destroy_sequence:
|
|
- destroy
|
|
test_sequence:
|
|
- dependency
|
|
- destroy
|
|
- syntax
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- idempotence
|
|
- verify
|
|
- destroy
|