blob: ffaabb07e9d2c2c96b8cc0868310e73cd12e6e2f (
plain)
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
|
---
dependency:
name: galaxy
driver:
name: docker
lint:
name: yamllint
platforms:
- name: resource-host
image: molecule-${PREBUILD_PLATFORM_DISTRO:-centos}:${PREBUILD_DISTRO_VERSION:-centos7.6}
pre_build_image: true
privileged: true
override_command: false
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- ${HOME}/data:/data:rw # mount fs from host to get nfs exportfs task working
groups:
- resources
networks:
- name: resource-data
- name: infrastructure-server
image: molecule-${PREBUILD_PLATFORM_DISTRO:-centos}:${PREBUILD_DISTRO_VERSION:-centos7.6}
pre_build_image: true
privileged: true
override_command: false
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
groups:
- infrastructure
networks:
- name: resource-data
provisioner:
name: ansible
playbooks:
cleanup: ../default/cleanup.yml
env:
ANSIBLE_ROLES_PATH: ../../../../roles:../../../roles
inventory:
links:
group_vars: ../default/group_vars
lint:
name: ansible-lint
verifier:
name: testinfra
lint:
name: flake8
|