2020-09-09 16:10:42 +02:00
|
|
|
---
|
|
|
|
driver:
|
|
|
|
name: docker
|
|
|
|
lint: |
|
|
|
|
set -e
|
|
|
|
yamllint .
|
|
|
|
ansible-lint --force-color
|
|
|
|
platforms:
|
2021-03-22 21:17:54 +01:00
|
|
|
- name: alpine-3.11
|
2021-03-24 23:28:52 +01:00
|
|
|
image: alpine:3.11
|
2021-03-22 21:17:54 +01:00
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
|
|
|
- name: alpine-3.12
|
|
|
|
image: alpine:3.12
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
2021-04-27 23:34:48 +02:00
|
|
|
- name: alpine-3.13
|
|
|
|
image: alpine:3.13
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
2021-09-28 20:20:01 +02:00
|
|
|
- name: alpine-3.14
|
|
|
|
image: alpine:3.14
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
|
|
|
- name: amazonlinux-2
|
2021-08-23 16:35:02 +02:00
|
|
|
image: amazonlinux:2
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/usr/sbin/init"
|
2021-03-22 21:17:54 +01:00
|
|
|
- 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: centos-8
|
|
|
|
image: centos:8
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/usr/sbin/init"
|
2020-09-09 16:10:42 +02:00
|
|
|
- name: debian-buster
|
|
|
|
image: debian:buster-slim
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
2021-09-28 20:20:01 +02:00
|
|
|
- name: debian-bullseye
|
|
|
|
image: debian:bullseye-slim
|
2020-09-09 16:10:42 +02:00
|
|
|
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-03-22 21:17:54 +01:00
|
|
|
prepare: prepare.yml
|
|
|
|
converge: converge.yml
|
|
|
|
verify: verify.yml
|