blob: d143303055c1454fe2c7d5fd3c77541880d9efcf (
plain) (
blame)
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
58
59
|
---
dependency:
name: galaxy
driver:
name: docker
platforms:
- name: application
image: ${MOLECULE_DISTRO:-debian:12}
dockerfile: Dockerfile.j2
pre_build_image: false
docker_networks:
- name: molecule-container-net
driver_options:
# Setting the mtu size due to issues with docker and VPN
com.docker.network.driver.mtu: 1420
networks:
- name: molecule-container-net
groups: [application_group]
- name: application2
image: ${MOLECULE_DISTRO:-debian:12}
dockerfile: Dockerfile.j2
pre_build_image: false
networks:
- name: molecule-container-net
groups: [application_group]
- name: application3
image: ${MOLECULE_DISTRO:-debian:12}
dockerfile: Dockerfile.j2
pre_build_image: false
networks:
- name: molecule-container-net
groups: [application_group]
- name: application4
image: ${MOLECULE_DISTRO:-debian:12}
dockerfile: Dockerfile.j2
pre_build_image: false
networks:
- name: molecule-container-net
groups: [application_group]
- name: prometheus
image: ${MOLECULE_DISTRO:-debian:12}
dockerfile: Dockerfile.j2
pre_build_image: false
networks:
- name: molecule-container-net
provisioner:
name: ansible
playbooks:
converge: ${MOLECULE_PLAYBOOK:-converge.yml}
verifier:
name: testinfra
|