2019-08-03 12:53:21 +02:00
|
|
|
---
|
|
|
|
driver:
|
|
|
|
name: docker
|
2020-03-25 18:43:32 +01:00
|
|
|
lint: |
|
|
|
|
set -e
|
|
|
|
yamllint .
|
|
|
|
ansible-lint
|
2019-08-03 12:53:21 +02:00
|
|
|
platforms:
|
|
|
|
- name: debian-stretch
|
2019-11-21 19:53:30 +01:00
|
|
|
image: debian:stretch-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"
|
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"
|
2019-08-03 12:53:21 +02:00
|
|
|
- name: ubuntu-xenial
|
|
|
|
image: ubuntu:xenial
|
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:
|
2020-07-20 13:37:36 +02:00
|
|
|
converge: ../common/playbooks/unit_converge.yml
|