@@ -3,107 +3,106 @@ driver:
3
3
name : docker
4
4
lint : |
5
5
set -e
6
- yamllint .
7
6
ansible-lint --force-color
8
7
platforms :
9
8
- name : alpine-3.13
10
9
image : alpine:3.13
11
10
dockerfile : ../common/Dockerfile.j2
12
11
privileged : true
13
12
volumes :
14
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
15
- command : " /sbin/init"
13
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
14
+ command : /sbin/init
16
15
- name : alpine-3.14
17
16
image : alpine:3.14
18
17
dockerfile : ../common/Dockerfile.j2
19
18
privileged : true
20
19
volumes :
21
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
22
- command : " /sbin/init"
20
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
21
+ command : /sbin/init
23
22
- name : alpine-3.15
24
23
image : alpine:3.15
25
24
dockerfile : ../common/Dockerfile.j2
26
25
privileged : true
27
26
volumes :
28
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
29
- command : " /sbin/init"
27
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
28
+ command : /sbin/init
30
29
- name : alpine-3.16
31
30
image : alpine:3.16
32
31
dockerfile : ../common/Dockerfile.j2
33
32
privileged : true
34
33
volumes :
35
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
36
- command : " /sbin/init"
34
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
35
+ command : /sbin/init
37
36
- name : amazonlinux-2
38
37
image : amazonlinux:2
39
38
dockerfile : ../common/Dockerfile.j2
40
39
privileged : true
41
40
volumes :
42
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
43
- command : " /usr/sbin/init"
41
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
42
+ command : /usr/sbin/init
44
43
- name : centos-7
45
44
image : centos:7
46
45
dockerfile : ../common/Dockerfile.j2
47
46
privileged : true
48
47
volumes :
49
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
50
- command : " /usr/sbin/init"
48
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
49
+ command : /usr/sbin/init
51
50
- name : rhel-7
52
51
image : registry.access.redhat.com/ubi7/ubi:7.9
53
52
dockerfile : ../common/Dockerfile.j2
54
53
privileged : true
55
54
volumes :
56
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
57
- command : " /usr/sbin/init"
55
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
56
+ command : /usr/sbin/init
58
57
- name : rhel-8
59
58
image : registry.access.redhat.com/ubi8/ubi:8.5
60
59
dockerfile : ../common/Dockerfile.j2
61
60
privileged : true
62
61
volumes :
63
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
64
- command : " /usr/sbin/init"
62
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
63
+ command : /usr/sbin/init
65
64
- name : rhel-9
66
65
image : registry.access.redhat.com/ubi9/ubi:9.0.0
67
66
dockerfile : ../common/Dockerfile.j2
68
67
privileged : true
69
68
volumes :
70
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
71
- command : " /usr/sbin/init"
69
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
70
+ command : /usr/sbin/init
72
71
- name : debian-buster
73
72
image : debian:buster-slim
74
73
dockerfile : ../common/Dockerfile.j2
75
74
privileged : true
76
75
volumes :
77
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
78
- command : " /sbin/init"
76
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
77
+ command : /sbin/init
79
78
- name : debian-bullseye
80
79
image : debian:bullseye-slim
81
80
dockerfile : ../common/Dockerfile.j2
82
81
privileged : true
83
82
volumes :
84
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
85
- command : " /sbin/init"
83
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
84
+ command : /sbin/init
86
85
- name : ubuntu-bionic
87
86
image : ubuntu:bionic
88
87
dockerfile : ../common/Dockerfile.j2
89
88
privileged : true
90
89
volumes :
91
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
92
- command : " /sbin/init"
90
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
91
+ command : /sbin/init
93
92
- name : ubuntu-focal
94
93
image : ubuntu:focal
95
94
dockerfile : ../common/Dockerfile.j2
96
95
privileged : true
97
96
volumes :
98
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
99
- command : " /sbin/init"
97
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
98
+ command : /sbin/init
100
99
- name : ubuntu-jammy
101
100
image : ubuntu:jammy
102
101
dockerfile : ../common/Dockerfile.j2
103
102
privileged : true
104
103
volumes :
105
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
106
- command : " /sbin/init"
104
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
105
+ command : /sbin/init
107
106
provisioner :
108
107
name : ansible
109
108
playbooks :
0 commit comments