Skip to content

Commit c0def6c

Browse files
authored
Support the latest NGINX Plus distro updates (#527)
1 parent ce75780 commit c0def6c

File tree

4 files changed

+48
-18
lines changed

4 files changed

+48
-18
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
FEATURES:
66

7-
* Add support for NGINX OSS on Ubuntu jammy (22.04).
7+
* Add Ubuntu jammy (22.04) to the NGINX list of tested and supported platforms.
8+
* Add RHEL 9 to the NGINX list of tested and supported platforms.
9+
* Add Alpine Linux 3.16 to the NGINX list of tested and supported platforms (and remove Alpine Linux 3.12).
810
* Add CODEOWNERS file.
9-
* Add RHEL 9 to the NGINX OSS list of tested and supported platforms.
10-
* Add Alpine Linux 3.16 to the NGINX OSS list of tested and supported platforms (and remove Alpine Linux 3.12).
1111

1212
ENHANCEMENTS:
1313

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ Ubuntu:
102102

103103
```yaml
104104
Alpine:
105-
- 3.12
106105
- 3.13
107106
- 3.14
108107
- 3.15
108+
- 3.16
109109
Amazon Linux 2:
110110
- any
111111
CentOS:
@@ -121,12 +121,14 @@ Oracle Linux:
121121
Red Hat:
122122
- 7.4+
123123
- 8
124+
- 9
124125
SUSE/SLES:
125126
- 12
126127
- 15
127128
Ubuntu:
128129
- bionic (18.04)
129130
- focal (20.04)
131+
- jammy (22.04)
130132
```
131133

132134
### NGINX Amplify Agent

molecule/plus/molecule.yml

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ lint: |
66
yamllint .
77
ansible-lint --force-color
88
platforms:
9-
- name: alpine-3.12
10-
image: alpine:3.12
11-
dockerfile: ../common/Dockerfile.j2
12-
privileged: true
13-
volumes:
14-
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
15-
command: "/sbin/init"
169
- name: alpine-3.13
1710
image: alpine:3.13
1811
dockerfile: ../common/Dockerfile.j2
@@ -34,6 +27,13 @@ platforms:
3427
volumes:
3528
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
3629
command: "/sbin/init"
30+
- name: alpine-3.16
31+
image: alpine:3.16
32+
dockerfile: ../common/Dockerfile.j2
33+
privileged: true
34+
volumes:
35+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
36+
command: "/sbin/init"
3737
- name: amazonlinux-2
3838
image: amazonlinux:2
3939
dockerfile: ../common/Dockerfile.j2
@@ -62,6 +62,13 @@ platforms:
6262
volumes:
6363
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
6464
command: "/usr/sbin/init"
65+
- name: rhel-9
66+
image: registry.access.redhat.com/ubi9/ubi:9.0.0
67+
dockerfile: ../common/Dockerfile.j2
68+
privileged: true
69+
volumes:
70+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
71+
command: "/usr/sbin/init"
6572
- name: debian-buster
6673
image: debian:buster-slim
6774
dockerfile: ../common/Dockerfile.j2
@@ -90,6 +97,13 @@ platforms:
9097
volumes:
9198
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
9299
command: "/sbin/init"
100+
- name: ubuntu-jammy
101+
image: ubuntu:jammy
102+
dockerfile: ../common/Dockerfile.j2
103+
privileged: true
104+
volumes:
105+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
106+
command: "/sbin/init"
93107
provisioner:
94108
name: ansible
95109
playbooks:

molecule/uninstall_plus/molecule.yml

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ lint: |
66
yamllint .
77
ansible-lint --force-color
88
platforms: # Ubuntu bionic and Debian buster result in a segmentation fault error as of Ansible core 2.13
9-
- name: alpine-3.12
10-
image: alpine:3.12
11-
dockerfile: ../common/Dockerfile.j2
12-
privileged: true
13-
volumes:
14-
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
15-
command: "/sbin/init"
169
- name: alpine-3.13
1710
image: alpine:3.13
1811
dockerfile: ../common/Dockerfile.j2
@@ -34,6 +27,13 @@ platforms: # Ubuntu bionic and Debian buster result in a segmentation fault err
3427
volumes:
3528
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
3629
command: "/sbin/init"
30+
- name: alpine-3.16
31+
image: alpine:3.16
32+
dockerfile: ../common/Dockerfile.j2
33+
privileged: true
34+
volumes:
35+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
36+
command: "/sbin/init"
3737
- name: amazonlinux-2
3838
image: amazonlinux:2
3939
dockerfile: ../common/Dockerfile.j2
@@ -62,6 +62,13 @@ platforms: # Ubuntu bionic and Debian buster result in a segmentation fault err
6262
volumes:
6363
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
6464
command: "/usr/sbin/init"
65+
- name: rhel-9
66+
image: registry.access.redhat.com/ubi9/ubi:9.0.0
67+
dockerfile: ../common/Dockerfile.j2
68+
privileged: true
69+
volumes:
70+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
71+
command: "/usr/sbin/init"
6572
- name: debian-bullseye
6673
image: debian:bullseye-slim
6774
dockerfile: ../common/Dockerfile.j2
@@ -76,6 +83,13 @@ platforms: # Ubuntu bionic and Debian buster result in a segmentation fault err
7683
volumes:
7784
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
7885
command: "/sbin/init"
86+
- name: ubuntu-jammy
87+
image: ubuntu:jammy
88+
dockerfile: ../common/Dockerfile.j2
89+
privileged: true
90+
volumes:
91+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
92+
command: "/sbin/init"
7993
provisioner:
8094
name: ansible
8195
playbooks:

0 commit comments

Comments
 (0)