File tree Expand file tree Collapse file tree 6 files changed +31
-1
lines changed Expand file tree Collapse file tree 6 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ The Alpine Linux `libelf` dependency is no longer automatically installed by NGI
12
12
13
13
TESTS:
14
14
15
- Update GitHub actions to run on Ubuntu 22.04 (and thus support ` cgroups ` v2).
15
+ * Update GitHub actions to run on Ubuntu 22.04 (and thus support ` cgroups ` v2).
16
+ * Explicitly specify ` amd64 ` as the platform used in Molecule tests. This will ensure that tests work as expected when run on different host architectures (e.g. newer Macbooks with ` arm ` processors).
16
17
17
18
## 0.8.1 (September 28, 2022)
18
19
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ lint: |
11
11
platforms :
12
12
- name : test-workload
13
13
image : nginxdemos/hello
14
+ platform : amd64
14
15
privileged : true
15
16
groups :
16
17
- workload
@@ -19,6 +20,7 @@ platforms:
19
20
- name : centos-7
20
21
image : centos:7
21
22
dockerfile : ../common/Dockerfile.j2
23
+ platform : amd64
22
24
privileged : true
23
25
cgroupns_mode : host
24
26
volumes :
@@ -30,6 +32,7 @@ platforms:
30
32
- name : molecule-test
31
33
- name : debian-buster
32
34
image : debian:buster-slim
35
+ platform : amd64
33
36
dockerfile : ../common/Dockerfile.j2
34
37
privileged : true
35
38
cgroupns_mode : host
@@ -42,6 +45,7 @@ platforms:
42
45
- name : molecule-test
43
46
- name : ubuntu-bionic
44
47
image : ubuntu:bionic
48
+ platform : amd64
45
49
dockerfile : ../common/Dockerfile.j2
46
50
privileged : true
47
51
cgroupns_mode : host
@@ -54,6 +58,7 @@ platforms:
54
58
- name : molecule-test
55
59
- name : ubuntu-focal
56
60
image : ubuntu:focal
61
+ platform : amd64
57
62
dockerfile : ../common/Dockerfile.j2
58
63
privileged : true
59
64
cgroupns_mode : host
Original file line number Diff line number Diff line change 7
7
platforms :
8
8
- name : amazonlinux-2
9
9
image : amazonlinux:2
10
+ platform : amd64
10
11
dockerfile : ../common/Dockerfile.j2
11
12
privileged : true
12
13
cgroupns_mode : host
@@ -15,6 +16,7 @@ platforms:
15
16
command : /usr/sbin/init
16
17
- name : centos-7
17
18
image : centos:7
19
+ platform : amd64
18
20
dockerfile : ../common/Dockerfile.j2
19
21
privileged : true
20
22
cgroupns_mode : host
@@ -23,6 +25,7 @@ platforms:
23
25
command : /usr/sbin/init
24
26
- name : rhel-7
25
27
image : registry.access.redhat.com/ubi7/ubi:7.9
28
+ platform : amd64
26
29
dockerfile : ../common/Dockerfile.j2
27
30
privileged : true
28
31
cgroupns_mode : host
@@ -31,6 +34,7 @@ platforms:
31
34
command : /usr/sbin/init
32
35
- name : rhel-8
33
36
image : registry.access.redhat.com/ubi8/ubi:8.5
37
+ platform : amd64
34
38
dockerfile : ../common/Dockerfile.j2
35
39
privileged : true
36
40
cgroupns_mode : host
@@ -39,6 +43,7 @@ platforms:
39
43
command : /usr/sbin/init
40
44
- name : debian-buster
41
45
image : debian:buster-slim
46
+ platform : amd64
42
47
dockerfile : ../common/Dockerfile.j2
43
48
privileged : true
44
49
cgroupns_mode : host
@@ -47,6 +52,7 @@ platforms:
47
52
command : /sbin/init
48
53
- name : ubuntu-bionic
49
54
image : ubuntu:bionic
55
+ platform : amd64
50
56
dockerfile : ../common/Dockerfile.j2
51
57
privileged : true
52
58
cgroupns_mode : host
@@ -55,6 +61,7 @@ platforms:
55
61
command : /sbin/init
56
62
- name : ubuntu-focal
57
63
image : ubuntu:focal
64
+ platform : amd64
58
65
dockerfile : ../common/Dockerfile.j2
59
66
privileged : true
60
67
cgroupns_mode : host
Original file line number Diff line number Diff line change 7
7
platforms :
8
8
- name : alpine-3.15
9
9
image : alpine:3.15
10
+ platform : amd64
10
11
dockerfile : ../common/Dockerfile.j2
11
12
privileged : true
12
13
cgroupns_mode : host
@@ -15,6 +16,7 @@ platforms:
15
16
command : /sbin/init
16
17
- name : centos-7
17
18
image : centos:7
19
+ platform : amd64
18
20
dockerfile : ../common/Dockerfile.j2
19
21
privileged : true
20
22
cgroupns_mode : host
@@ -23,6 +25,7 @@ platforms:
23
25
command : /usr/sbin/init
24
26
- name : rhel-7
25
27
image : registry.access.redhat.com/ubi7/ubi:7.9
28
+ platform : amd64
26
29
dockerfile : ../common/Dockerfile.j2
27
30
privileged : true
28
31
cgroupns_mode : host
@@ -31,6 +34,7 @@ platforms:
31
34
command : /usr/sbin/init
32
35
- name : rhel-8
33
36
image : registry.access.redhat.com/ubi8/ubi:8.5
37
+ platform : amd64
34
38
dockerfile : ../common/Dockerfile.j2
35
39
privileged : true
36
40
cgroupns_mode : host
@@ -39,6 +43,7 @@ platforms:
39
43
command : /usr/sbin/init
40
44
- name : debian-buster
41
45
image : debian:buster-slim
46
+ platform : amd64
42
47
dockerfile : ../common/Dockerfile.j2
43
48
privileged : true
44
49
cgroupns_mode : host
@@ -47,6 +52,7 @@ platforms:
47
52
command : /sbin/init
48
53
- name : debian-bullseye
49
54
image : debian:bullseye-slim
55
+ platform : amd64
50
56
dockerfile : ../common/Dockerfile.j2
51
57
privileged : true
52
58
cgroupns_mode : host
@@ -55,6 +61,7 @@ platforms:
55
61
command : /sbin/init
56
62
- name : ubuntu-bionic
57
63
image : ubuntu:bionic
64
+ platform : amd64
58
65
dockerfile : ../common/Dockerfile.j2
59
66
privileged : true
60
67
cgroupns_mode : host
@@ -63,6 +70,7 @@ platforms:
63
70
command : /sbin/init
64
71
- name : ubuntu-focal
65
72
image : ubuntu:focal
73
+ platform : amd64
66
74
dockerfile : ../common/Dockerfile.j2
67
75
privileged : true
68
76
cgroupns_mode : host
Original file line number Diff line number Diff line change 7
7
platforms :
8
8
- name : centos-7
9
9
image : centos:7
10
+ platform : amd64
10
11
dockerfile : ../common/Dockerfile.j2
11
12
privileged : true
12
13
cgroupns_mode : host
@@ -15,6 +16,7 @@ platforms:
15
16
command : /usr/sbin/init
16
17
- name : rhel-7
17
18
image : registry.access.redhat.com/ubi7/ubi:7.9
19
+ platform : amd64
18
20
dockerfile : ../common/Dockerfile.j2
19
21
privileged : true
20
22
cgroupns_mode : host
@@ -23,6 +25,7 @@ platforms:
23
25
command : /usr/sbin/init
24
26
- name : debian-buster
25
27
image : debian:buster-slim
28
+ platform : amd64
26
29
dockerfile : ../common/Dockerfile.j2
27
30
privileged : true
28
31
cgroupns_mode : host
@@ -31,6 +34,7 @@ platforms:
31
34
command : /sbin/init
32
35
- name : ubuntu-bionic
33
36
image : ubuntu:bionic
37
+ platform : amd64
34
38
dockerfile : ../common/Dockerfile.j2
35
39
privileged : true
36
40
cgroupns_mode : host
@@ -39,6 +43,7 @@ platforms:
39
43
command : /sbin/init
40
44
- name : ubuntu-focal
41
45
image : ubuntu:focal
46
+ platform : amd64
42
47
dockerfile : ../common/Dockerfile.j2
43
48
privileged : true
44
49
cgroupns_mode : host
Original file line number Diff line number Diff line change 7
7
platforms : # Ubuntu bionic and Debian buster result in a segmentation fault error as of Ansible core 2.13
8
8
- name : centos-7
9
9
image : centos:7
10
+ platform : amd64
10
11
dockerfile : ../common/Dockerfile.j2
11
12
privileged : true
12
13
cgroupns_mode : host
@@ -15,6 +16,7 @@ platforms: # Ubuntu bionic and Debian buster result in a segmentation fault erro
15
16
command : /usr/sbin/init
16
17
- name : rhel-7
17
18
image : registry.access.redhat.com/ubi7/ubi:7.9
19
+ platform : amd64
18
20
dockerfile : ../common/Dockerfile.j2
19
21
privileged : true
20
22
cgroupns_mode : host
@@ -23,6 +25,7 @@ platforms: # Ubuntu bionic and Debian buster result in a segmentation fault erro
23
25
command : /usr/sbin/init
24
26
- name : rhel-8
25
27
image : registry.access.redhat.com/ubi8/ubi:8.5
28
+ platform : amd64
26
29
dockerfile : ../common/Dockerfile.j2
27
30
privileged : true
28
31
cgroupns_mode : host
@@ -31,6 +34,7 @@ platforms: # Ubuntu bionic and Debian buster result in a segmentation fault erro
31
34
command : /usr/sbin/init
32
35
- name : ubuntu-focal
33
36
image : ubuntu:focal
37
+ platform : amd64
34
38
dockerfile : ../common/Dockerfile.j2
35
39
privileged : true
36
40
cgroupns_mode : host
You can’t perform that action at this time.
0 commit comments