Skip to content

Commit f8f172f

Browse files
committed
feat: Add support for Alpine Linux 3.20
1 parent c65b3b8 commit f8f172f

File tree

17 files changed

+272
-184
lines changed

17 files changed

+272
-184
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ BREAKING CHANGES:
66

77
- Remove support for RHEL 7 based distributions (RHEL/CentOS/Oracle Linux 7). CentOS 7 has reached EoL, RHEL 7 has reached EoM, and Oracle Linux 7 will reach EoL shortly. These distributions will not be supported by new NGINX releases moving forward. If you are still using one of these distributions, please consider upgrading. If you still want to use this role for the time being, please use the previous release (0.24.3). Do note that you will only be able to use NGINX versions released as of the date of the aforementioned release (July 11, 2024).
88

9+
FEATURES:
10+
11+
- Add support for installing NGINX Open Source on Alpine Linux 3.20.
12+
913
## 0.24.3 (July 11, 2024)
1014

1115
DEPRECATION WARNINGS:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ AlmaLinux:
112112
- 8
113113
- 9
114114
Alpine:
115-
- 3.16
116115
- 3.17
117116
- 3.18
118117
- 3.19
118+
- 3.20
119119
Amazon Linux:
120120
- 2
121121
- 2023
@@ -187,10 +187,10 @@ AlmaLinux:
187187
- 8
188188
- 9
189189
Alpine:
190-
- 3.16
191190
- 3.17
192191
- 3.18
193192
- 3.19
193+
- 3.20
194194
Amazon Linux:
195195
- 2
196196
- 2023

molecule/agent/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
- name: Get list of NGINX One dangling instance IDs
2727
ansible.builtin.uri:
28-
url: https://{{ lookup('env', 'ONE_TENANT') }}.console.ves.volterra.io/api/nginx/one/namespaces/default/instances?paginated=false&filter_fields=hostname&filter_ops=IN&filter_values=almalinux-8|almalinux-9|alpine-3.16|alpine-3.17|alpine-3.18|alpine-3.19|amazonlinux-2|debian-bullseye|debian-bookworm|oraclelinux-8|oraclelinux-9|rhel-8|rhel-9|rockylinux-8|rockylinux-9|sles-15|ubuntu-focal|ubuntu-jammy
28+
url: https://{{ lookup('env', 'ONE_TENANT') }}.console.ves.volterra.io/api/nginx/one/namespaces/default/instances?paginated=false&filter_fields=hostname&filter_ops=IN&filter_values=almalinux-8|almalinux-9|alpine-3.17|alpine-3.18|alpine-3.19|alpine-3.20|amazonlinux-2|debian-bullseye|debian-bookworm|oraclelinux-8|oraclelinux-9|rhel-8|rhel-9|rockylinux-8|rockylinux-9|sles-15|ubuntu-focal|ubuntu-jammy
2929
method: GET
3030
headers:
3131
Authorization: APIToken {{ lookup('env', 'ONE_API_TOKEN') }}

molecule/agent/molecule.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ platforms:
5252
volumes:
5353
- /sys/fs/cgroup:/sys/fs/cgroup:rw
5454
command: /sbin/init
55+
- name: alpine-3.20
56+
image: alpine:3.20
57+
dockerfile: ../common/Dockerfile.j2
58+
privileged: true
59+
cgroupns_mode: host
60+
volumes:
61+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
62+
command: /sbin/init
5563
- name: amazonlinux-2
5664
image: amazonlinux:2
5765
platform: x86_64

0 commit comments

Comments
 (0)