molecule.yml - ansible-roles - A collection of ansible roles I have created over the years.
(HTM) git clone git://jay.scot/ansible-roles
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
molecule.yml (494B)
---
1 ---
2 dependency:
3 name: galaxy
4 driver:
5 name: docker
6 lint: |
7 set -e
8 yamllint .
9 ansible-lint
10 platforms:
11 - name: instance
12 image: "geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2004}-ansible:latest"
13 command: ${MOLECULE_DOCKER_COMMAND:-""}
14 volumes:
15 - /sys/fs/cgroup:/sys/fs/cgroup:ro
16 privileged: true
17 pre_build_image: true
18 published_ports:
19 - "0.0.0.0:8000:80/tcp"
20 provisioner:
21 name: ansible
22 playbooks:
23 converge: ${MOLECULE_PLAYBOOK:-converge.yml}