|
| 1 | +--- |
| 2 | +driver: |
| 3 | + name: docker |
| 4 | +lint: | |
| 5 | + set -e |
| 6 | + ansible-lint --force-color |
| 7 | +platforms: # The RHEL UBI 7 image fails to install some NGINX dependencies when installing NGINX from EPEL. The role works as expected when targeting a RHEL 7 VM instead. |
| 8 | + - name: almalinux-8 |
| 9 | + image: almalinux:8 |
| 10 | + dockerfile: ../common/Dockerfile.j2 |
| 11 | + privileged: true |
| 12 | + cgroupns_mode: host |
| 13 | + volumes: |
| 14 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 15 | + command: /usr/sbin/init |
| 16 | + - name: almalinux-9 |
| 17 | + image: almalinux:9 |
| 18 | + dockerfile: ../common/Dockerfile.j2 |
| 19 | + privileged: true |
| 20 | + cgroupns_mode: host |
| 21 | + volumes: |
| 22 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 23 | + command: /usr/sbin/init |
| 24 | + - name: alpine-3.14 |
| 25 | + image: alpine:3.14 |
| 26 | + dockerfile: ../common/Dockerfile.j2 |
| 27 | + privileged: true |
| 28 | + cgroupns_mode: host |
| 29 | + volumes: |
| 30 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 31 | + command: /sbin/init |
| 32 | + - name: alpine-3.15 |
| 33 | + image: alpine:3.15 |
| 34 | + dockerfile: ../common/Dockerfile.j2 |
| 35 | + privileged: true |
| 36 | + cgroupns_mode: host |
| 37 | + volumes: |
| 38 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 39 | + command: /sbin/init |
| 40 | + - name: alpine-3.16 |
| 41 | + image: alpine:3.16 |
| 42 | + dockerfile: ../common/Dockerfile.j2 |
| 43 | + privileged: true |
| 44 | + cgroupns_mode: host |
| 45 | + volumes: |
| 46 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 47 | + command: /sbin/init |
| 48 | + - name: alpine-3.17 |
| 49 | + image: alpine:3.17 |
| 50 | + dockerfile: ../common/Dockerfile.j2 |
| 51 | + privileged: true |
| 52 | + cgroupns_mode: host |
| 53 | + volumes: |
| 54 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 55 | + command: /sbin/init |
| 56 | + - name: amazonlinux-2 |
| 57 | + image: amazonlinux:2 |
| 58 | + platform: amd64 |
| 59 | + dockerfile: ../common/Dockerfile.j2 |
| 60 | + privileged: true |
| 61 | + cgroupns_mode: host |
| 62 | + volumes: |
| 63 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 64 | + command: /usr/sbin/init |
| 65 | + - name: centos-7 |
| 66 | + image: centos:7 |
| 67 | + platform: amd64 |
| 68 | + dockerfile: ../common/Dockerfile.j2 |
| 69 | + privileged: true |
| 70 | + cgroupns_mode: host |
| 71 | + volumes: |
| 72 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 73 | + command: /usr/sbin/init |
| 74 | + - name: debian-bullseye |
| 75 | + image: debian:bullseye-slim |
| 76 | + dockerfile: ../common/Dockerfile.j2 |
| 77 | + privileged: true |
| 78 | + cgroupns_mode: host |
| 79 | + volumes: |
| 80 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 81 | + command: /sbin/init |
| 82 | + - name: oraclelinux-7 |
| 83 | + image: oraclelinux:7 |
| 84 | + platform: amd64 |
| 85 | + dockerfile: ../common/Dockerfile.j2 |
| 86 | + privileged: true |
| 87 | + cgroupns_mode: host |
| 88 | + volumes: |
| 89 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 90 | + command: /usr/sbin/init |
| 91 | + - name: oraclelinux-8 |
| 92 | + image: oraclelinux:8 |
| 93 | + dockerfile: ../common/Dockerfile.j2 |
| 94 | + privileged: true |
| 95 | + cgroupns_mode: host |
| 96 | + volumes: |
| 97 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 98 | + command: /usr/sbin/init |
| 99 | + - name: oraclelinux-9 |
| 100 | + image: oraclelinux:9 |
| 101 | + dockerfile: ../common/Dockerfile.j2 |
| 102 | + privileged: true |
| 103 | + cgroupns_mode: host |
| 104 | + volumes: |
| 105 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 106 | + command: /usr/sbin/init |
| 107 | + - name: rhel-8 |
| 108 | + image: redhat/ubi8:8.7 |
| 109 | + dockerfile: ../common/Dockerfile.j2 |
| 110 | + privileged: true |
| 111 | + cgroupns_mode: host |
| 112 | + volumes: |
| 113 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 114 | + command: /usr/sbin/init |
| 115 | + - name: rhel-9 |
| 116 | + image: redhat/ubi9:9.1.0 |
| 117 | + dockerfile: ../common/Dockerfile.j2 |
| 118 | + privileged: true |
| 119 | + cgroupns_mode: host |
| 120 | + volumes: |
| 121 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 122 | + command: /usr/sbin/init |
| 123 | + - name: rockylinux-8 |
| 124 | + image: rockylinux:8 |
| 125 | + dockerfile: ../common/Dockerfile.j2 |
| 126 | + privileged: true |
| 127 | + cgroupns_mode: host |
| 128 | + volumes: |
| 129 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 130 | + command: /usr/sbin/init |
| 131 | + - name: rockylinux-9 |
| 132 | + image: rockylinux:9.0.20220720 |
| 133 | + dockerfile: ../common/Dockerfile.j2 |
| 134 | + privileged: true |
| 135 | + cgroupns_mode: host |
| 136 | + volumes: |
| 137 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 138 | + command: /usr/sbin/init |
| 139 | + - name: sles15 |
| 140 | + image: registry.suse.com/bci/bci-base:15.4 |
| 141 | + platform: amd64 |
| 142 | + dockerfile: ../common/Dockerfile.j2 |
| 143 | + privileged: true |
| 144 | + cgroupns_mode: host |
| 145 | + volumes: |
| 146 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 147 | + command: /usr/sbin/init |
| 148 | + - name: ubuntu-bionic |
| 149 | + image: ubuntu:bionic |
| 150 | + dockerfile: ../common/Dockerfile.j2 |
| 151 | + privileged: true |
| 152 | + cgroupns_mode: host |
| 153 | + volumes: |
| 154 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 155 | + command: /sbin/init |
| 156 | + - name: ubuntu-focal |
| 157 | + image: ubuntu:focal |
| 158 | + dockerfile: ../common/Dockerfile.j2 |
| 159 | + privileged: true |
| 160 | + cgroupns_mode: host |
| 161 | + volumes: |
| 162 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 163 | + command: /sbin/init |
| 164 | + - name: ubuntu-jammy |
| 165 | + image: ubuntu:jammy |
| 166 | + dockerfile: ../common/Dockerfile.j2 |
| 167 | + privileged: true |
| 168 | + cgroupns_mode: host |
| 169 | + volumes: |
| 170 | + - /sys/fs/cgroup:/sys/fs/cgroup:rw |
| 171 | + command: /sbin/init |
| 172 | +provisioner: |
| 173 | + name: ansible |
| 174 | + log: true |
| 175 | + playbooks: |
| 176 | + converge: converge.yml |
| 177 | + verify: verify.yml |
0 commit comments