Skip to content

Commit 2269c36

Browse files
Merge pull request #1 from nemca/nemca/ref/molecule
molecule updates
2 parents 2cd8eef + ad96f2c commit 2269c36

File tree

12 files changed

+178
-1392
lines changed

12 files changed

+178
-1392
lines changed

.config/molecule/config.yml

Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
---
2+
# Note: if you need to overwrite these settings,
3+
# just add it to molecule/${SCENARIO}/molecule.yml.
4+
5+
# Driver for all scenarios.
6+
driver:
7+
name: docker
8+
9+
# Shared list of platforms for all scenarios.
10+
platforms:
11+
- name: almalinux-8
12+
image: almalinux:8
13+
dockerfile: ../common/Dockerfile.j2
14+
privileged: true
15+
cgroupns_mode: host
16+
volumes:
17+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
18+
command: /usr/sbin/init
19+
- name: almalinux-9
20+
image: almalinux:9
21+
dockerfile: ../common/Dockerfile.j2
22+
privileged: true
23+
cgroupns_mode: host
24+
volumes:
25+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
26+
command: /usr/sbin/init
27+
- name: alpine-3.19
28+
image: alpine:3.19
29+
dockerfile: ../common/Dockerfile.j2
30+
privileged: true
31+
cgroupns_mode: host
32+
volumes:
33+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
34+
command: /sbin/init
35+
- name: alpine-3.20
36+
image: alpine:3.20
37+
dockerfile: ../common/Dockerfile.j2
38+
privileged: true
39+
cgroupns_mode: host
40+
volumes:
41+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
42+
command: /sbin/init
43+
- name: alpine-3.21
44+
image: alpine:3.21
45+
dockerfile: ../common/Dockerfile.j2
46+
privileged: true
47+
cgroupns_mode: host
48+
volumes:
49+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
50+
command: /sbin/init
51+
- name: amazonlinux-2
52+
image: amazonlinux:2
53+
platform: x86_64
54+
dockerfile: ../common/Dockerfile.j2
55+
privileged: true
56+
cgroupns_mode: host
57+
volumes:
58+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
59+
command: /usr/sbin/init
60+
- name: amazonlinux-2023
61+
image: amazonlinux:2023
62+
dockerfile: ../common/Dockerfile.j2
63+
privileged: true
64+
cgroupns_mode: host
65+
volumes:
66+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
67+
command: /usr/sbin/init
68+
- name: debian-bullseye
69+
image: debian:bullseye-slim
70+
dockerfile: ../common/Dockerfile.j2
71+
privileged: true
72+
cgroupns_mode: host
73+
volumes:
74+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
75+
command: /sbin/init
76+
- name: debian-bookworm
77+
image: debian:bookworm-slim
78+
dockerfile: ../common/Dockerfile.j2
79+
privileged: true
80+
cgroupns_mode: host
81+
volumes:
82+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
83+
command: /sbin/init
84+
- name: debian-trixie
85+
image: debian:trixie-slim
86+
dockerfile: ../common/Dockerfile.j2
87+
privileged: true
88+
cgroupns_mode: host
89+
volumes:
90+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
91+
command: /sbin/init
92+
- name: oraclelinux-8
93+
image: oraclelinux:8
94+
dockerfile: ../common/Dockerfile.j2
95+
privileged: true
96+
cgroupns_mode: host
97+
volumes:
98+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
99+
command: /usr/sbin/init
100+
- name: oraclelinux-9
101+
image: oraclelinux:9
102+
platform: x86_64
103+
dockerfile: ../common/Dockerfile.j2
104+
privileged: true
105+
cgroupns_mode: host
106+
volumes:
107+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
108+
command: /usr/sbin/init
109+
- name: rhel-8
110+
image: redhat/ubi8:8.10
111+
dockerfile: ../common/Dockerfile.j2
112+
privileged: true
113+
cgroupns_mode: host
114+
volumes:
115+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
116+
command: /usr/sbin/init
117+
- name: rhel-9
118+
image: redhat/ubi9:9.5
119+
dockerfile: ../common/Dockerfile.j2
120+
privileged: true
121+
cgroupns_mode: host
122+
volumes:
123+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
124+
command: /usr/sbin/init
125+
- name: rockylinux-8
126+
image: rockylinux:8
127+
dockerfile: ../common/Dockerfile.j2
128+
privileged: true
129+
cgroupns_mode: host
130+
volumes:
131+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
132+
command: /usr/sbin/init
133+
- name: rockylinux-9
134+
image: rockylinux:9.0
135+
dockerfile: ../common/Dockerfile.j2
136+
privileged: true
137+
cgroupns_mode: host
138+
volumes:
139+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
140+
command: /usr/sbin/init
141+
- name: sles-15
142+
image: registry.suse.com/suse/sle15:15.6
143+
dockerfile: ../common/Dockerfile.j2
144+
privileged: true
145+
cgroupns_mode: host
146+
volumes:
147+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
148+
command: /usr/sbin/init
149+
- name: ubuntu-jammy
150+
image: ubuntu:jammy
151+
dockerfile: ../common/Dockerfile.j2
152+
privileged: true
153+
cgroupns_mode: host
154+
volumes:
155+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
156+
command: /sbin/init
157+
- name: ubuntu-noble
158+
image: ubuntu:noble
159+
dockerfile: ../common/Dockerfile.j2
160+
privileged: true
161+
cgroupns_mode: host
162+
volumes:
163+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
164+
command: /sbin/init
165+
- name: ubuntu-plucky
166+
image: ubuntu:plucky
167+
dockerfile: ../common/Dockerfile.j2
168+
privileged: true
169+
cgroupns_mode: host
170+
volumes:
171+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
172+
command: /sbin/init

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ AlmaLinux:
174174
- 8
175175
- 9
176176
Alpine:
177-
- 3.18
178177
- 3.19
179178
- 3.20
180179
- 3.21
@@ -197,10 +196,9 @@ Rocky Linux:
197196
SUSE/SLES:
198197
- 15 SP6+
199198
Ubuntu:
200-
- focal (20.04)
201199
- jammy (22.04)
202200
- noble (24.04)
203-
- oracular (24.10)
201+
- plucky (25.04)
204202
```
205203

206204
### NGINX Plus

molecule/default/molecule.yml

Lines changed: 0 additions & 173 deletions
Original file line numberDiff line numberDiff line change
@@ -1,177 +1,4 @@
11
---
2-
driver:
3-
name: docker
4-
platforms:
5-
- name: almalinux-8
6-
image: almalinux:8
7-
dockerfile: ../common/Dockerfile.j2
8-
privileged: true
9-
cgroupns_mode: host
10-
volumes:
11-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
12-
command: /usr/sbin/init
13-
- name: almalinux-9
14-
image: almalinux:9
15-
dockerfile: ../common/Dockerfile.j2
16-
privileged: true
17-
cgroupns_mode: host
18-
volumes:
19-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
20-
command: /usr/sbin/init
21-
- name: alpine-3.18
22-
image: alpine:3.18
23-
dockerfile: ../common/Dockerfile.j2
24-
privileged: true
25-
cgroupns_mode: host
26-
volumes:
27-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
28-
command: /sbin/init
29-
- name: alpine-3.19
30-
image: alpine:3.19
31-
dockerfile: ../common/Dockerfile.j2
32-
privileged: true
33-
cgroupns_mode: host
34-
volumes:
35-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
36-
command: /sbin/init
37-
- name: alpine-3.20
38-
image: alpine:3.20
39-
dockerfile: ../common/Dockerfile.j2
40-
privileged: true
41-
cgroupns_mode: host
42-
volumes:
43-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
44-
command: /sbin/init
45-
- name: alpine-3.21
46-
image: alpine:3.21
47-
dockerfile: ../common/Dockerfile.j2
48-
privileged: true
49-
cgroupns_mode: host
50-
volumes:
51-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
52-
command: /sbin/init
53-
- name: amazonlinux-2
54-
image: amazonlinux:2
55-
platform: x86_64
56-
dockerfile: ../common/Dockerfile.j2
57-
privileged: true
58-
cgroupns_mode: host
59-
volumes:
60-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
61-
command: /usr/sbin/init
62-
- name: amazonlinux-2023
63-
image: amazonlinux:2023
64-
dockerfile: ../common/Dockerfile.j2
65-
privileged: true
66-
cgroupns_mode: host
67-
volumes:
68-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
69-
command: /usr/sbin/init
70-
- name: debian-bullseye
71-
image: debian:bullseye-slim
72-
dockerfile: ../common/Dockerfile.j2
73-
privileged: true
74-
cgroupns_mode: host
75-
volumes:
76-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
77-
command: /sbin/init
78-
- name: debian-bookworm
79-
image: debian:bookworm-slim
80-
dockerfile: ../common/Dockerfile.j2
81-
privileged: true
82-
cgroupns_mode: host
83-
volumes:
84-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
85-
command: /sbin/init
86-
- name: oraclelinux-8
87-
image: oraclelinux:8
88-
dockerfile: ../common/Dockerfile.j2
89-
privileged: true
90-
cgroupns_mode: host
91-
volumes:
92-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
93-
command: /usr/sbin/init
94-
- name: oraclelinux-9
95-
image: oraclelinux:9
96-
platform: x86_64
97-
dockerfile: ../common/Dockerfile.j2
98-
privileged: true
99-
cgroupns_mode: host
100-
volumes:
101-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
102-
command: /usr/sbin/init
103-
- name: rhel-8
104-
image: redhat/ubi8:8.10
105-
dockerfile: ../common/Dockerfile.j2
106-
privileged: true
107-
cgroupns_mode: host
108-
volumes:
109-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
110-
command: /usr/sbin/init
111-
- name: rhel-9
112-
image: redhat/ubi9:9.5
113-
dockerfile: ../common/Dockerfile.j2
114-
privileged: true
115-
cgroupns_mode: host
116-
volumes:
117-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
118-
command: /usr/sbin/init
119-
- name: rockylinux-8
120-
image: rockylinux:8
121-
dockerfile: ../common/Dockerfile.j2
122-
privileged: true
123-
cgroupns_mode: host
124-
volumes:
125-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
126-
command: /usr/sbin/init
127-
- name: rockylinux-9
128-
image: rockylinux:9.0
129-
dockerfile: ../common/Dockerfile.j2
130-
privileged: true
131-
cgroupns_mode: host
132-
volumes:
133-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
134-
command: /usr/sbin/init
135-
- name: sles-15
136-
image: registry.suse.com/suse/sle15:15.6
137-
dockerfile: ../common/Dockerfile.j2
138-
privileged: true
139-
cgroupns_mode: host
140-
volumes:
141-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
142-
command: /usr/sbin/init
143-
- name: ubuntu-focal
144-
image: ubuntu:focal
145-
dockerfile: ../common/Dockerfile.j2
146-
privileged: true
147-
cgroupns_mode: host
148-
volumes:
149-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
150-
command: /sbin/init
151-
- name: ubuntu-jammy
152-
image: ubuntu:jammy
153-
dockerfile: ../common/Dockerfile.j2
154-
privileged: true
155-
cgroupns_mode: host
156-
volumes:
157-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
158-
command: /sbin/init
159-
- name: ubuntu-noble
160-
image: ubuntu:noble
161-
dockerfile: ../common/Dockerfile.j2
162-
privileged: true
163-
cgroupns_mode: host
164-
volumes:
165-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
166-
command: /sbin/init
167-
- name: ubuntu-oracular
168-
image: ubuntu:oracular
169-
dockerfile: ../common/Dockerfile.j2
170-
privileged: true
171-
cgroupns_mode: host
172-
volumes:
173-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
174-
command: /sbin/init
1752
provisioner:
1763
name: ansible
1774
log: true

0 commit comments

Comments
 (0)