-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmolecule.yml
45 lines (40 loc) · 1.09 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
---
dependency:
name: galaxy
requirements_file: tests/requirements.yml
driver:
name: docker
docker:
containers:
- name: ansible-role-apache-vhosts-1404
image: ubuntu
image_version: 14.04
volume_mounts:
- ${MOLECULE_APTPROXY_PATH}:/etc/apt/apt.conf.d/00aptproxy
- name: ansible-role-apache-vhosts-1604
image: ubuntu
image_version: 16.04
volume_mounts:
- ${MOLECULE_APTPROXY_PATH}:/etc/apt/apt.conf.d/00aptproxy
- name: ansible-role-apache-vhosts-centos7
image: centos/systemd
image_version: latest
volume_mounts:
- "/sys/fs/cgroup:/sys/fs/cgroup:ro"
privileged: True
ansible:
playbook: tests/playbook.yml
group_vars:
all:
apache_vhosts_sites:
foo:
servername: "local.dev"
documentroot: "/var/www/html"
bar:
servername: "local2.dev"
documentroot: "/var/www/html"
templates:
template: tests/custom_template.conf.j2
servername: "other.dev"
somevariable: "somevalue"
apache_vhosts_remove_sites: ['bar']