Skip to content
This repository has been archived by the owner on May 20, 2020. It is now read-only.

Commit

Permalink
Updating MongoDB version as 3.2.4
Browse files Browse the repository at this point in the history
Update the MongoDB version as 3.0.11 for 3.0.x testing.
  • Loading branch information
sunggun-yu committed Apr 6, 2016
1 parent 511ffd0 commit 933155a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ suites:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03

- name: wired-tiger
Expand Down
2 changes: 1 addition & 1 deletion attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#

# MongoDB version to install
default['mongodb3']['version'] = '3.2.1'
default['mongodb3']['version'] = '3.2.4'

# Please note : The default values for ['mongodb3']['package'] attributes will be set in `package_repo` recipe.
# but, You can set custom values for yum/apt repo url, yum package version or apt related in your wrapper
Expand Down
2 changes: 1 addition & 1 deletion test/cookbooks/mongodb3-test/recipes/default-30x.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# limitations under the License.
#

node.set['mongodb3']['version'] = '3.0.9'
node.set['mongodb3']['version'] = '3.0.11'

# For package upgrade testing : executing converge twice with different version
# node.set['mongodb3']['version'] = '3.2.4'
Expand Down
2 changes: 1 addition & 1 deletion test/integration/chef-client-11/serverspec/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# Test mongod process starts with expected mongodb config file
describe command('mongo --eval "db.version()"') do
its(:stdout) { should contain('3.2.1') }
its(:stdout) { should contain('3.2.4') }
end

# Test chef client version
Expand Down
2 changes: 1 addition & 1 deletion test/integration/custom/serverspec/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@

# Test mongod process starts with expected mongodb config file
describe command('mongo --eval "db.version()"') do
its(:stdout) { should contain('3.2.1') }
its(:stdout) { should contain('3.2.4') }
end
2 changes: 1 addition & 1 deletion test/integration/default-30x/serverspec/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@

# Test mongod process starts with expected mongodb config file
describe command('mongo --eval "db.version()"') do
its(:stdout) { should contain('3.0.9') }
its(:stdout) { should contain('3.0.11') }
end
2 changes: 1 addition & 1 deletion test/integration/default/serverspec/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@

# Test mongod process starts with expected mongodb config file
describe command('mongo --eval "db.version()"') do
its(:stdout) { should contain('3.2.1') }
its(:stdout) { should contain('3.2.4') }
end

0 comments on commit 933155a

Please sign in to comment.