Skip to content

Commit

Permalink
update mongodb default version (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
trfore authored Aug 27, 2023
2 parents 30344f0 + 38a5b16 commit 5a62bb7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
distro: [centos8, debian10, ubuntu2004]
version: ["4.4.23"]
version: ["4.4.24"]
molecule_scenario: ["-s default", "-s install_tarball"]
uses: ./.github/workflows/test.yml
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ roles:
- Debian 10 & 11
- Ubuntu 20.04

### MongoDB Community `4.4.23`
### MongoDB Community `4.4.24`

- CentOS Stream 8
- Debian 10
Expand All @@ -64,7 +64,7 @@ Common variables are listed below, along with default values (see `defaults/main
| Variable | Default | Description | Required |
| ------------------------- | --------- | ------------------------------------------------------ | --------- |
| mongodb_pkg_install | `true` | Boolean, `true` to install MongoDB via package manager | No |
| mongodb_version | `4.4.23` | MongoDB Community stable releases `v4.4`, `v5`, `v6` | Yes |
| mongodb_version | `4.4.24` | MongoDB Community stable releases `v4.4`, `v5`, `v6` | Yes |
| mongodb_version_maj | Automatic | Extracts major value from `mongodb_version` | Automatic |
| mongodb_version_maj_minor | Automatic | Extracts major and minor values from `mongodb_version` | Automatic |

Expand Down Expand Up @@ -159,7 +159,7 @@ Common variables are listed below, along with default values (see `defaults/main
become: true
vars:
mongodb_pkg_install: false
mongodb_tar_src: mongodb-linux-x86_64-debian10-4.4.23.tgz
mongodb_tar_src: mongodb-linux-x86_64-debian10-4.4.24.tgz
mongodb_tar_src_remote: false
roles:
- name: Install MongoDB
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
mongodb_pkg_install: true # false = install from tarball
mongodb_version: '4.4.23'
mongodb_version: '4.4.24'
mongodb_version_maj: '{{ mongodb_version | regex_search("^\d") }}'
mongodb_version_maj_minor: '{{ mongodb_version | regex_search("^\d.\d") }}'

Expand Down
2 changes: 1 addition & 1 deletion molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ provisioner:
playbooks:
converge: ${MOLECULE_PLAYBOOK:-converge.yml}
env:
MONGODB_VERSION: ${MOLECULE_MONGODB_VERSION:-"4.4.23"}
MONGODB_VERSION: ${MOLECULE_MONGODB_VERSION:-"4.4.24"}
verifier:
name: testinfra
scenario:
Expand Down
2 changes: 1 addition & 1 deletion mongodb.versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"4.4": "4.4.23",
"4.4": "4.4.24",
"5.0": "5.0.20",
"6.0": "6.0.9"
}

0 comments on commit 5a62bb7

Please sign in to comment.