Skip to content

Commit d7ba98a

Browse files
committed
Dropped support of EOL version 3.2 of MongoDB.
1 parent 2fd8ce9 commit d7ba98a

File tree

7 files changed

+10
-39
lines changed

7 files changed

+10
-39
lines changed

.travis.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ env:
2929
DISTRIBUTION=ubuntu
3030
DIST_VERSION=16_04-builded
3131
MONGODB_VERSION=3.4
32-
- >
33-
DISTRIBUTION=ubuntu
34-
DIST_VERSION=16_04-builded
35-
MONGODB_VERSION=3.2
3632
- >
3733
DISTRIBUTION=ubuntu-upstart
3834
DIST_VERSION=14.04
@@ -45,10 +41,6 @@ env:
4541
DISTRIBUTION=ubuntu-upstart
4642
DIST_VERSION=14.04
4743
MONGODB_VERSION=3.4
48-
- >
49-
DISTRIBUTION=ubuntu-upstart
50-
DIST_VERSION=14.04
51-
MONGODB_VERSION=3.2
5244
- >
5345
DISTRIBUTION=debian
5446
DIST_VERSION=9-builded
@@ -57,10 +49,6 @@ env:
5749
DISTRIBUTION=debian
5850
DIST_VERSION=9-builded
5951
MONGODB_VERSION=3.6
60-
- >
61-
DISTRIBUTION=debian
62-
DIST_VERSION=9-builded
63-
MONGODB_VERSION=3.2
6452
MONGODB_PACKAGE=mongodb
6553
- >
6654
DISTRIBUTION=debian
@@ -74,10 +62,6 @@ env:
7462
DISTRIBUTION=debian
7563
DIST_VERSION=8-builded
7664
MONGODB_VERSION=3.4
77-
- >
78-
DISTRIBUTION=debian
79-
DIST_VERSION=8-builded
80-
MONGODB_VERSION=3.2
8165
- >
8266
DISTRIBUTION=centos
8367
DIST_VERSION=6-builded
@@ -90,10 +74,6 @@ env:
9074
DISTRIBUTION=centos
9175
DIST_VERSION=6-builded
9276
MONGODB_VERSION=3.4
93-
- >
94-
DISTRIBUTION=centos
95-
DIST_VERSION=6-builded
96-
MONGODB_VERSION=3.2
9777
- >
9878
DISTRIBUTION=centos
9979
DIST_VERSION=7-builded
@@ -106,10 +86,6 @@ env:
10686
DISTRIBUTION=centos
10787
DIST_VERSION=7-builded
10888
MONGODB_VERSION=3.4
109-
- >
110-
DISTRIBUTION=centos
111-
DIST_VERSION=7-builded
112-
MONGODB_VERSION=3.2
11389
11490
services:
11591
- docker

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ MongoDB support matrix:
1212

1313
| Distribution | < MongoDB 3.0 | MongoDB 3.2 | MongoDB 3.4 | MongoDB 3.6 | MongoDB 4.0 |
1414
| ------------ |:-------------:|:-----------:|:-----------:|:-----------:|:-----------:|
15-
| Ubuntu 14.04 | :no_entry: | :white_check_mark:| :white_check_mark:| :white_check_mark:| :white_check_mark:|
16-
| Ubuntu 16.04 | :no_entry: | :white_check_mark:| :white_check_mark:| :white_check_mark:| :white_check_mark:|
17-
| Ubuntu 18.04 | :no_entry: | :x:| :x:| :white_check_mark:| :white_check_mark:|
18-
| Debian 8.x | :no_entry: | :white_check_mark:| :white_check_mark:| :white_check_mark:| :white_check_mark:|
19-
| Debian 9.x | :no_entry: | :white_check_mark:| :x:| :white_check_mark:| :white_check_mark:|
20-
| RHEL 6.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark:| :white_check_mark:|
21-
| RHEL 7.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark:| :white_check_mark:|
15+
| Ubuntu 14.04 | :no_entry: | :no_entry:| :white_check_mark:| :white_check_mark:| :white_check_mark:|
16+
| Ubuntu 16.04 | :no_entry: | :no_entry:| :white_check_mark:| :white_check_mark:| :white_check_mark:|
17+
| Ubuntu 18.04 | :no_entry: | :no_entry:| :x:| :white_check_mark:| :white_check_mark:|
18+
| Debian 8.x | :no_entry: | :no_entry:| :white_check_mark:| :white_check_mark:| :white_check_mark:|
19+
| Debian 9.x | :no_entry: | :no_entry:| :x:| :white_check_mark:| :white_check_mark:|
20+
| RHEL 6.x | :no_entry: | :no_entry: | :white_check_mark: | :white_check_mark:| :white_check_mark:|
21+
| RHEL 7.x | :no_entry: | :no_entry: | :white_check_mark: | :white_check_mark:| :white_check_mark:|
2222

2323
- :white_check_mark: - fully tested, should works fine
2424
- :interrobang: - maybe works, not tested
@@ -34,7 +34,7 @@ MongoDB support matrix:
3434
mongodb_package: mongodb-org
3535

3636
# You can control installed version via this param.
37-
# Should be '3.2', '3.4', '3.6'. This role doesn't support MongoDB < 3.2.
37+
# Should be '3.4', '3.6' or '4.0'. This role doesn't support MongoDB < 3.4.
3838
# I will recommend you to use latest version of MongoDB.
3939
mongodb_version: "3.6"
4040

defaults/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ mongodb_package: mongodb-org
44
mongodb_version: "3.6"
55
mongodb_apt_keyserver: keyserver.ubuntu.com
66
mongodb_apt_key_id:
7-
"3.2": "EA312927"
87
"3.4": "0C49F3730359A14518585931BC711F9BA15703C6"
98
"3.6": "2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5"
109
"4.0": "9DA31620334BD75D9DCB49F368818C72E52529D4"

tasks/install.debian.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
- name: Fail when used wrong mongodb_version variable with Debian Stretch
2121
fail:
22-
msg: "mongodb_version variable should be '3.2' or '3.6' or '4.0' for Debian Stretch"
22+
msg: "mongodb_version variable should be '3.6' or '4.0' for Debian Stretch"
2323
when: (mongodb_package == 'mongodb-org' and
2424
(mongodb_version is not defined
2525
or mongodb_repository[mongodb_major_version] is not defined
@@ -34,7 +34,7 @@
3434

3535
- name: Fail when used wrong mongodb_version variable
3636
fail:
37-
msg: "mongodb_version variable should be '3.2', '3.4', '3.6' or '4.0'"
37+
msg: "mongodb_version variable should be '3.4', '3.6' or '4.0'"
3838
when: (mongodb_package == 'mongodb-org' and
3939
(mongodb_version is not defined
4040
or mongodb_repository[mongodb_major_version] is not defined))

vars/Debian.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
mongodb_repository:
3-
"3.2": "deb http://repo.mongodb.org/apt/debian {{ ansible_distribution_release }}/mongodb-org/3.2 main"
43
"3.4": "deb http://repo.mongodb.org/apt/debian {{ ansible_distribution_release }}/mongodb-org/3.4 main"
54
"3.6": "deb http://repo.mongodb.org/apt/debian {{ ansible_distribution_release }}/mongodb-org/3.6 main"
65
"4.0": "deb http://repo.mongodb.org/apt/debian {{ ansible_distribution_release }}/mongodb-org/4.0 main"

vars/RedHat.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
22

33
mongodb_repository:
4-
"3.2": "https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.2/$basearch/"
54
"3.4": "https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/$basearch/"
65
"3.6": "https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.6/$basearch/"
76
"4.0": "https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.0/$basearch/"
87

98
mongodb_repository_gpgkey:
10-
"3.2": "https://www.mongodb.org/static/pgp/server-3.2.asc"
119
"3.4": "https://www.mongodb.org/static/pgp/server-3.4.asc"
1210
"3.6": "https://www.mongodb.org/static/pgp/server-3.6.asc"
1311
"4.0": "https://www.mongodb.org/static/pgp/server-4.0.asc"

vars/Ubuntu.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
mongodb_repository:
3-
"3.2": "deb http://repo.mongodb.org/apt/ubuntu {{ ansible_distribution_release }}/mongodb-org/3.2 multiverse"
43
"3.4": "deb http://repo.mongodb.org/apt/ubuntu {{ ansible_distribution_release }}/mongodb-org/3.4 multiverse"
54
"3.6": "deb http://repo.mongodb.org/apt/ubuntu {{ ansible_distribution_release }}/mongodb-org/3.6 multiverse"
65
"4.0": "deb http://repo.mongodb.org/apt/ubuntu {{ ansible_distribution_release }}/mongodb-org/4.0 multiverse"

0 commit comments

Comments
 (0)