Skip to content

Commit

Permalink
Update specific mongo version
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysmeister committed Jul 25, 2024
1 parent 40e76b7 commit 029fa6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
- name: Converge
hosts: all
vars:
specific_mongodb_version: "6.0.16"
specific_mongodb_version: "7.0.9"
roles:
- role: mongodb_repository
mongodb_version: "6.0"
mongodb_version: "7.0"
- role: mongodb_install
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ def test_mongodump_available(host):
def test_specific_mongodb_version(host):
cmd = host.run("mongod --version")
assert cmd.rc == 0
assert "6.0.16" in cmd.stdout
assert "7.0.9" in cmd.stdout

0 comments on commit 029fa6f

Please sign in to comment.