Commit 263273e3 by Fred Smith

Merge pull request #2385 from edx/derf/make_replset_name_overrideable

make replset name overrideable
parents 9028ce6f f0b8b6c6
...@@ -7,7 +7,7 @@ mongo_version: 3.0.6 ...@@ -7,7 +7,7 @@ mongo_version: 3.0.6
mongo_port: "27017" mongo_port: "27017"
mongo_extra_conf: '' mongo_extra_conf: ''
mongo_key_file: '/etc/mongodb_key' mongo_key_file: '/etc/mongodb_key'
mongo_repl_set: rs0 mongo_repl_set: "{{ MONGO_REPL_SET }}"
mongo_cluster_members: [] mongo_cluster_members: []
pymongo_version: 2.8.1 pymongo_version: 2.8.1
...@@ -43,6 +43,7 @@ MONGO_USERS: ...@@ -43,6 +43,7 @@ MONGO_USERS:
MONGO_CLUSTERED: !!null MONGO_CLUSTERED: !!null
MONGO_BIND_IP: 127.0.0.1 MONGO_BIND_IP: 127.0.0.1
MONGO_REPL_SET: "rs0"
# Storage engine options in 3.0: "mmapv1" or "wiredTiger" # Storage engine options in 3.0: "mmapv1" or "wiredTiger"
MONGO_STORAGE_ENGINE: "mmapv1" MONGO_STORAGE_ENGINE: "mmapv1"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment