-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmolecule.yml
57 lines (47 loc) · 1.32 KB
/
molecule.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
molecule:
# directory in CWD to place all temp files, etc.
molecule_dir: .molecule
# where temporary state will be stored (lives under molecule_dir)
state_file: state
# name of temporary vagrantfile created during runs (lives under molecule_dir)
vagrantfile_file: vagrantfile
# directories to ignore when doing trailing whitespace checks on files during verify command
ignore_paths:
- .git
- .vagrant
- .molecule
# directory to look for testinfra tests
testinfra_dir: tests
# directory containing group_vars to use with ansible
group_vars: ../tests/group_vars
#dependency:
# name: galaxy
# requirements_file: tests/requirements.yml
# ansible related configuration
ansible:
playbook: tests/playbook.yml
# configuration options for the internal call to vagrant
vagrant:
# molecule's --platform option will look for these names
raw_config_args:
- "landrush.enabled = true"
- "landrush.tld = ''"
- "landrush.guest_redirect_dns = false"
platforms:
- name: Debian
box: debian/jessie64
providers:
- name: virtualbox
type: virtualbox
options:
memory: 512
cpus: 1
instances:
- name: aptly
ansible_groups:
- aptly
interfaces:
- network_name: private_network
type: dhcp
auto_config: true