2021-12-07 02:47:13 +01:00
|
|
|
---
|
|
|
|
driver:
|
|
|
|
name: docker
|
|
|
|
lint: |
|
|
|
|
set -e
|
|
|
|
yamllint .
|
|
|
|
ansible-lint --force-color
|
|
|
|
platforms:
|
|
|
|
- name: amazonlinux-2
|
|
|
|
image: amazonlinux:2
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/usr/sbin/init"
|
|
|
|
- name: centos-7
|
|
|
|
image: centos:7
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/usr/sbin/init"
|
|
|
|
- name: debian-buster
|
|
|
|
image: debian:buster-slim
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
|
|
|
- name: debian-bullseye
|
|
|
|
image: debian:bullseye-slim
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
|
|
|
- name: ubuntu-bionic
|
|
|
|
image: ubuntu:bionic
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
|
|
|
- name: ubuntu-focal
|
|
|
|
image: ubuntu:focal
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
|
|
|
provisioner:
|
|
|
|
name: ansible
|
|
|
|
playbooks:
|
2021-12-09 21:40:57 +01:00
|
|
|
prepare: prepare.yml
|
2021-12-07 02:47:13 +01:00
|
|
|
converge: converge.yml
|
|
|
|
verify: verify.yml
|