Skip to content

Commit 1a06e5e

Browse files
authored
Nap 31 updates (#76)
* support for 20.04 * add focal to molecule stacks * add missing command param * temporarily limit test platforms for advanced scenario * add alpine back to advanced * add centos7 back to advanced scenario * add debian stretch back to advanced scenario * removing debian stretch from advanced scenario
1 parent db19339 commit 1a06e5e

File tree

7 files changed

+20
-3
lines changed

7 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ FEATURES:
1818
* You can now specify an `nginx_app_protect_repository` for NGINX App Protect.
1919
* You can now specify an `nginx_app_protect_security_updates_repository` for NGINX App Protect signatures and threat campaigns packages.
2020
* You can now specify NGINX App Protect signatures and threat campaigns package versions using the `nginx_app_protect_signatures_version` and `nginx_app_protect_threat_campaigns_version` variables.
21+
* Add support for Ubuntu 20.04 available starting with App Protect 3.1.
2122

2223
ENHANCEMENTS:
2324

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Debian:
6767
- 9
6868
Ubuntu:
6969
- 18.04
70+
- 20.04
7071
```
7172

7273
## Role Variables

meta/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ galaxy_info:
2424
- name: Ubuntu
2525
versions:
2626
- bionic
27+
- focal
2728

2829
galaxy_tags:
2930
- waf

molecule/advanced/molecule.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ platforms:
5050
- nap
5151
networks:
5252
- name: molecule-test
53-
- name: debian-stretch
54-
image: debian:stretch-slim
53+
- name: ubuntu-focal
54+
image: ubuntu:focal
5555
dockerfile: ../Dockerfile.j2
5656
privileged: true
5757
volumes:

molecule/default/molecule.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ platforms:
2727
volumes:
2828
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
2929
command: "/sbin/init"
30+
- name: ubuntu-focal
31+
image: ubuntu:focal
32+
dockerfile: ../Dockerfile.j2
33+
privileged: true
34+
volumes:
35+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
36+
command: "/sbin/init"
3037
- name: debian-stretch
3138
image: debian:stretch-slim
3239
dockerfile: ../Dockerfile.j2

molecule/specific-version/molecule.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ platforms:
2727
volumes:
2828
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
2929
command: "/sbin/init"
30+
- name: ubuntu-focal
31+
image: ubuntu:focal
32+
dockerfile: ../Dockerfile.j2
33+
privileged: true
34+
volumes:
35+
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
36+
command: "/sbin/init"
3037
- name: debian-stretch
3138
image: debian:stretch-slim
3239
dockerfile: ../Dockerfile.j2

vars/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ nginx_app_protect_linux_families:
1212
"10",
1313
]
1414
ubuntu: [
15-
"18.04",
15+
"18.04", "20.04",
1616
]
1717
alpine: [
1818
"3.10",

0 commit comments

Comments
 (0)