Commit e9bc402e by Kevin Falcone

Merge pull request #2911 from edx/jibsheet/mongo_3-play-updates

Update mongo 3.0 play to use our two new roles
parents f4a2df8e 514b4428
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
gather_facts: True gather_facts: True
roles: roles:
- aws - aws
- enhanced_networking
- mongo_3_0 - mongo_3_0
- munin_node - munin_node
- role: datadog - role: datadog
......
...@@ -51,6 +51,13 @@ MONGO_RS_CONFIG: ...@@ -51,6 +51,13 @@ MONGO_RS_CONFIG:
# 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"
# List of dictionaries as described in the mount_ebs role's default
# for the volumes.
# Useful if you want to store your mongo data and/or journal on separate
# disks from the root volume. By default, they will end up mongo_data_dir
# on the root disk.
MONGO_VOLUMES: []
# WiredTiger takes a number of optional configuration settings # WiredTiger takes a number of optional configuration settings
# which can be defined as a yaml structure in your secure configuration. # which can be defined as a yaml structure in your secure configuration.
MONGO_STORAGE_ENGINE_OPTIONS: !!null MONGO_STORAGE_ENGINE_OPTIONS: !!null
......
--- ---
dependencies: dependencies:
- common - common
- role: mount_ebs
volumes: "{{ MONGO_VOLUMES }}"
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