Install mongodb client package

This resolves an error which can occur when trying to
create an overcloud without pre-built images. Specifically
mongodb replset creations fails because there is no 'mongo'
binary present:

Error: Could not prefetch mongodb_replset provider 'mongo': Could not
evalute MongoDB shell command: printjson(rs.conf())

Simply including the mongodb::client puppet class should resolve
this issue.

Change-Id: If66d3b900c61be51771f4cd0c9ea06eea62431a4
Closes-bug: #1544072
This commit is contained in:
Dan Prince 2016-02-10 09:21:11 -05:00
parent 93c392fa20
commit c569b1928b
2 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,7 @@ if hiera('step') >= 2 {
# MongoDB
if downcase(hiera('ceilometer_backend')) == 'mongodb' {
include ::mongodb::globals
include ::mongodb::client
include ::mongodb::server
$mongo_node_ips_with_port = suffix(hiera('mongo_node_ips'), ':27017')
$mongo_node_string = join($mongo_node_ips_with_port, ',')

View File

@ -109,6 +109,7 @@ if hiera('step') >= 1 {
if downcase(hiera('ceilometer_backend')) == 'mongodb' {
include ::mongodb::globals
include ::mongodb::client
class { '::mongodb::server' :
service_manage => false,
}