File tree 9 files changed +39
-5
lines changed
9 files changed +39
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## 0.23.2 (Unreleased)
4
4
5
+ FEATURES:
6
+
7
+ Add support for NGINX OSS on Ubuntu jammy (22.04).
8
+
5
9
BUG FIXES:
6
10
7
11
* Ensure gpg-agent is installed on Ubuntu/Debian to avoid APT key tasks failures.
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ Ubuntu:
94
94
- bionic (18.04)
95
95
- focal (20.04)
96
96
- impish (21.10)
97
+ - jammy (22.04)
97
98
` ` `
98
99
99
100
# ## NGINX Plus
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ galaxy_info:
32
32
versions :
33
33
- bionic
34
34
- focal
35
- - hirsute
35
+ - impish
36
+ - jammy
36
37
- name : SLES
37
38
versions :
38
39
- 12
Original file line number Diff line number Diff line change 4
4
pre_tasks :
5
5
- name : Set repo if Alpine
6
6
ansible.builtin.set_fact :
7
- version : " =1.21.5 -r1"
7
+ version : " =1.21.6 -r1"
8
8
when : ansible_facts['os_family'] == "Alpine"
9
9
- name : Set repo if Debian
10
10
ansible.builtin.set_fact :
11
- version : " =1.21.5 -1~{{ ansible_facts['distribution_release'] }}"
11
+ version : " =1.21.6 -1~{{ ansible_facts['distribution_release'] }}"
12
12
when : ansible_facts['os_family'] == "Debian"
13
13
- name : Set repo if Red Hat
14
14
ansible.builtin.set_fact :
15
- version : " -1.21.5 -1.{{ (ansible_facts['distribution'] == 'Amazon') | ternary('amzn2', ('el' + ansible_facts['distribution_major_version'] | string)) }}.ngx"
15
+ version : " -1.21.6 -1.{{ (ansible_facts['distribution'] == 'Amazon') | ternary('amzn2', ('el' + ansible_facts['distribution_major_version'] | string)) }}.ngx"
16
16
when : ansible_facts['os_family'] == "RedHat"
17
17
tasks :
18
18
- name : Install NGINX
Original file line number Diff line number Diff line change @@ -90,6 +90,13 @@ platforms:
90
90
volumes :
91
91
- " /sys/fs/cgroup:/sys/fs/cgroup:rw"
92
92
command : " /sbin/init"
93
+ - name : ubuntu-jammy
94
+ image : ubuntu:jammy
95
+ dockerfile : ../common/Dockerfile.j2
96
+ privileged : true
97
+ volumes :
98
+ - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
99
+ command : " /sbin/init"
93
100
provisioner :
94
101
name : ansible
95
102
playbooks :
Original file line number Diff line number Diff line change 30
30
chdir : " {{ ((ansible_facts['system'] | lower is not search('bsd')) | ternary('/etc/nginx', '/usr/local/sbin')) }}"
31
31
changed_when : false
32
32
register : version
33
- failed_when : version is not search('1.21.5 ')
33
+ failed_when : version is not search('1.21.6 ')
Original file line number Diff line number Diff line change @@ -90,6 +90,13 @@ platforms:
90
90
volumes :
91
91
- " /sys/fs/cgroup:/sys/fs/cgroup:rw"
92
92
command : " /sbin/init"
93
+ - name : ubuntu-jammy
94
+ image : ubuntu:jammy
95
+ dockerfile : ../common/Dockerfile.j2
96
+ privileged : true
97
+ volumes :
98
+ - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
99
+ command : " /sbin/init"
93
100
provisioner :
94
101
name : ansible
95
102
playbooks :
Original file line number Diff line number Diff line change @@ -90,6 +90,13 @@ platforms:
90
90
volumes :
91
91
- " /sys/fs/cgroup:/sys/fs/cgroup:rw"
92
92
command : " /sbin/init"
93
+ - name : ubuntu-jammy
94
+ image : ubuntu:jammy
95
+ dockerfile : ../common/Dockerfile.j2
96
+ privileged : true
97
+ volumes :
98
+ - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
99
+ command : " /sbin/init"
93
100
provisioner :
94
101
name : ansible
95
102
playbooks :
Original file line number Diff line number Diff line change @@ -90,6 +90,13 @@ platforms:
90
90
volumes :
91
91
- " /sys/fs/cgroup:/sys/fs/cgroup:rw"
92
92
command : " /sbin/init"
93
+ - name : ubuntu-jammy
94
+ image : ubuntu:jammy
95
+ dockerfile : ../common/Dockerfile.j2
96
+ privileged : true
97
+ volumes :
98
+ - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
99
+ command : " /sbin/init"
93
100
provisioner :
94
101
name : ansible
95
102
playbooks :
You can’t perform that action at this time.
0 commit comments