2019-08-03 12:53:21 +02:00
|
|
|
---
|
|
|
|
driver:
|
|
|
|
name: docker
|
2020-03-25 18:43:32 +01:00
|
|
|
lint: |
|
|
|
|
set -e
|
|
|
|
yamllint .
|
2020-09-01 16:34:54 +02:00
|
|
|
ansible-lint --force-color
|
2019-08-03 12:53:21 +02:00
|
|
|
platforms:
|
2021-03-22 21:17:54 +01:00
|
|
|
- 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-03-24 23:28:52 +01: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-08-23 16:35:02 +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"
|
2021-12-03 07:59:36 +01:00
|
|
|
- name: alpine-3.15
|
|
|
|
image: alpine:3.15
|
|
|
|
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: 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"
|
2019-08-07 22:16:27 +02:00
|
|
|
- name: debian-buster
|
2019-11-21 19:53:30 +01:00
|
|
|
image: debian:buster-slim
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
2020-03-25 18:43:32 +01:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
2021-08-23 16:35:02 +02:00
|
|
|
- name: debian-bullseye
|
|
|
|
image: debian:bullseye-slim
|
2019-11-21 19:53:30 +01:00
|
|
|
dockerfile: ../common/Dockerfile.j2
|
2020-03-25 18:43:32 +01:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
2019-08-03 12:53:21 +02:00
|
|
|
- name: ubuntu-bionic
|
|
|
|
image: ubuntu:bionic
|
2019-11-21 19:53:30 +01:00
|
|
|
dockerfile: ../common/Dockerfile.j2
|
2020-03-25 18:43:32 +01:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
2020-06-08 15:46:01 +02:00
|
|
|
- name: ubuntu-focal
|
|
|
|
image: ubuntu:focal
|
|
|
|
dockerfile: ../common/Dockerfile.j2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
|
|
command: "/sbin/init"
|
2019-08-03 12:53:21 +02:00
|
|
|
provisioner:
|
|
|
|
name: ansible
|
2019-11-26 22:12:09 +01:00
|
|
|
playbooks:
|
2021-03-22 21:17:54 +01:00
|
|
|
converge: converge.yml
|
|
|
|
verify: verify.yml
|