File tree Expand file tree Collapse file tree 17 files changed +23
-97
lines changed Expand file tree Collapse file tree 17 files changed +23
-97
lines changed Original file line number Diff line number Diff line change 5
5
* ~
6
6
\# *
7
7
8
- # OS Specific
8
+ # OS Specific #
9
+ # ##############
9
10
Thumbs.db
10
11
.DS_Store
11
12
.vscode
12
13
13
- # Ansible specific
14
+ # Ansible specific #
15
+ # ###################
14
16
* .retry
15
17
16
- # Python specific
18
+ # Python specific #
19
+ # ##################
17
20
__pycache__
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ install:
73
73
- pip install ansible==2.10.3
74
74
- pip install ansible-lint==4.3.7
75
75
- pip install yamllint==1.25.0
76
- - pip install 'molecule[docker]'==3.1.5
77
- - pip install docker==4.3.1
76
+ - pip install 'molecule[docker]'==3.2.0
77
+ - pip install docker==4.4.0
78
78
script :
79
79
- travis_wait 50 molecule test -s $scenario
80
80
notifications :
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.18.2 (Unreleased)
4
+
5
+ ENHANCEMENTS:
6
+
7
+ * Update Molecule to ` 3.2.0 ` and Docker Python SDK to ` 4.4.0 ` .
8
+ * Add Alpine ` 3.12 ` to supported platforms for NGINX Plus.
9
+ * Remove Alpine ` 3.9 ` and CentOS/RHEL ` 6 ` from supported platforms due to EOL.
10
+
3
11
## 0.18.1 (November 17, 2020)
4
12
5
13
ENHANCEMENTS:
Original file line number Diff line number Diff line change @@ -47,19 +47,16 @@ The NGINX Ansible role supports all platforms supported by [NGINX Open Source](h
47
47
48
48
``` yaml
49
49
Alpine :
50
- - 3.9
51
50
- 3.10
52
51
- 3.11
53
52
- 3.12
54
53
CentOS :
55
- - 6
56
54
- 7.4+
57
55
- 8
58
56
Debian :
59
57
- stretch
60
58
- buster
61
59
Red Hat :
62
- - 6
63
60
- 7.4+
64
61
- 8
65
62
SUSE/SLES :
@@ -76,15 +73,14 @@ Ubuntu:
76
73
77
74
` ` ` yaml
78
75
Alpine :
79
- - 3.9
80
76
- 3.10
81
77
- 3.11
78
+ - 3.12
82
79
Amazon Linux :
83
80
- 2018.03
84
81
Amazon Linux 2 :
85
82
- any
86
83
CentOS :
87
- - 6.5+
88
84
- 7.4+
89
85
- 8
90
86
Debian :
@@ -97,7 +93,6 @@ Oracle Linux:
97
93
- 6.5+
98
94
- 7.4+
99
95
Red Hat :
100
- - 6.5+
101
96
- 7.4+
102
97
- 8
103
98
SUSE/SLES :
@@ -116,13 +111,11 @@ Ubuntu:
116
111
Amazon Linux :
117
112
- 2017.09
118
113
CentOS :
119
- - 6
120
114
- 7
121
115
Debian :
122
116
- jessie
123
117
- stretch
124
118
Red Hat :
125
- - 6
126
119
- 7
127
120
Ubuntu :
128
121
- xenial
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ galaxy_info:
25
25
- buster
26
26
- name : EL
27
27
versions :
28
- - 6
29
28
- 7
30
29
- 8
31
30
- name : FreeBSD
Original file line number Diff line number Diff line change 6
6
yamllint .
7
7
ansible-lint --force-color
8
8
platforms :
9
- - name : alpine-3.9
10
- image : alpine:3.9
11
- dockerfile : ../common/Dockerfile.j2
12
- privileged : true
13
- volumes :
14
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
15
- command : " /sbin/init"
16
9
- name : alpine-3.10
17
10
image : alpine:3.10
18
11
dockerfile : ../common/Dockerfile.j2
Original file line number Diff line number Diff line change 6
6
yamllint .
7
7
ansible-lint --force-color
8
8
platforms :
9
- - name : centos-6
10
- image : centos:6
11
- dockerfile : ../common/Dockerfile.j2
12
- privileged : true
13
- volumes :
14
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
15
- command : " /sbin/init"
16
9
- name : centos-7
17
10
image : centos:7
18
11
dockerfile : ../common/Dockerfile.j2
Original file line number Diff line number Diff line change 6
6
yamllint .
7
7
ansible-lint --force-color
8
8
platforms :
9
- - name : alpine-3.9
10
- image : alpine:3.9
11
- dockerfile : ../common/Dockerfile.j2
12
- privileged : true
13
- volumes :
14
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
15
- command : " /sbin/init"
16
9
- name : alpine-3.10
17
10
image : alpine:3.10
18
11
dockerfile : ../common/Dockerfile.j2
Original file line number Diff line number Diff line change 6
6
yamllint .
7
7
ansible-lint --force-color
8
8
platforms :
9
- - name : centos-6
10
- image : centos:6
11
- dockerfile : ../common/Dockerfile.j2
12
- privileged : true
13
- volumes :
14
- - " /sys/fs/cgroup:/sys/fs/cgroup:rw"
15
- command : " /sbin/init"
16
9
- name : centos-7
17
10
image : centos:7
18
11
dockerfile : ../common/Dockerfile.j2
Original file line number Diff line number Diff line change @@ -6,22 +6,22 @@ lint: |
6
6
yamllint .
7
7
ansible-lint --force-color
8
8
platforms :
9
- - name : alpine-3.9
10
- image : alpine:3.9
9
+ - name : alpine-3.10
10
+ image : python:alpine3.10
11
11
dockerfile : ../common/Dockerfile.j2
12
12
privileged : true
13
13
volumes :
14
14
- " /sys/fs/cgroup:/sys/fs/cgroup:rw"
15
15
command : " /sbin/init"
16
- - name : alpine-3.10
17
- image : python:alpine3.10
16
+ - name : alpine-3.11
17
+ image : python:alpine3.11
18
18
dockerfile : ../common/Dockerfile.j2
19
19
privileged : true
20
20
volumes :
21
21
- " /sys/fs/cgroup:/sys/fs/cgroup:rw"
22
22
command : " /sbin/init"
23
- - name : alpine-3.11
24
- image : python:alpine3.11
23
+ - name : alpine-3.12
24
+ image : alpine:3.12
25
25
dockerfile : ../common/Dockerfile.j2
26
26
privileged : true
27
27
volumes :
You can’t perform that action at this time.
0 commit comments