forked from dj-wasabi/ansible-zabbix-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmolecule.yml
55 lines (50 loc) · 1.12 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
---
molecule:
test:
sequence:
- destroy
- create
- converge
- verify
- destroy
ansible:
playbook: playbook.yml
config_file: ansible.cfg
inventory_file: inventory
group_vars:
mysql:
- database_type: mysql
database_type_long: mysql
server_dbport: 3306
postgresql:
- database_type: pgsql
database_type_long: postgresql
postgresql_pg_hba_conf:
- "host all all 127.0.0.1/32 trust"
- "host all all ::1/128 trust"
postgresql_pg_hba_local_ipv4: false
postgresql_pg_hba_local_ipv6: false
dependency:
name: galaxy
requirements_file: requirements.yml
options:
ignore-certs: True
ignore-errors: True
driver:
name: docker
docker:
containers:
- name: zabbix-server-mysql-centos
ansible_groups:
- mysql
image: milcom/centos7-systemd
image_version: latest
privileged: True
- name: zabbix-server-pgsql-centos
ansible_groups:
- postgresql
image: milcom/centos7-systemd
image_version: latest
privileged: True
verifier:
name: testinfra