mongo: disable bind_ip parameter
commit 93028bc for mongodb to use $os_params::api_eth,. This breaks different part of the code where we try to connect to mongo using 127.0.0.1. For example in manifests/telemetry/server.pp and $os_params::mongodb_address. For the moment, I set it to undef. See: #186
This commit is contained in:
parent
1bef33f8da
commit
489b64b4ef
@ -18,7 +18,11 @@
|
||||
# Install a nosql server (MongoDB)
|
||||
#
|
||||
class cloud::database::nosql(
|
||||
$bind_ip = $os_params::api_eth,
|
||||
# $bind_ip = $os_params::api_eth,
|
||||
# disabled for the moment
|
||||
# See: https://github.com/enovance/puppet-cloud/issues/186
|
||||
$bind_ip = undef,
|
||||
$nojournal = false,
|
||||
) {
|
||||
|
||||
# bind_ip should be an array
|
||||
|
Loading…
x
Reference in New Issue
Block a user