Merge "Deploy MongoDB on scenario002"

This commit is contained in:
Jenkins 2016-02-17 19:21:40 +00:00 committed by Gerrit Code Review
commit 78a4471c5a
4 changed files with 10 additions and 1 deletions

View File

@ -148,7 +148,7 @@ mod 'memcached',
mod 'mongodb',
:git => 'https://github.com/puppetlabs/puppetlabs-mongodb',
:branch => '0.11.0'
:branch => '0.12.0'
mod 'mysql',
:git => 'https://github.com/puppetlabs/puppetlabs-mysql',

View File

@ -48,6 +48,7 @@ scenario](#All-In-One).
| horizon | | X | X |
| ironic | | X | |
| ceph | X | | |
| mongodb | | X | |
When the Jenkins slave is created, the *run_tests.sh* script will executed.
This script will execute *install_modules.sh* that prepare /etc/puppet/modules

View File

@ -26,6 +26,7 @@ include ::openstack_integration::horizon
include ::openstack_integration::sahara
include ::openstack_integration::swift
include ::openstack_integration::ironic
include ::openstack_integration::mongodb
include ::openstack_integration::provision
case $::osfamily {

7
manifests/mongodb.pp Normal file
View File

@ -0,0 +1,7 @@
class openstack_integration::mongodb {
include ::mongodb::globals
include ::mongodb::server
include ::mongodb::client
}