Commit 00db0fe7 by John Jarvis

Merge pull request #976 from edx/jarv/add-xqueue-to-common-cluster

adding xqueue to commoncluster and warning about reboot
parents cf085180 84c907a4
...@@ -3,7 +3,22 @@ ...@@ -3,7 +3,22 @@
- hosts: all - hosts: all
sudo: True sudo: True
serial: 1 serial: 1
vars:
ENABLE_DATADOG: False
ENABLE_SPLUNKFORWARDER: False
ENABLE_NEWRELIC: False
roles: roles:
- aws
- role: nginx
nginx_sites:
- xqueue
- role: xqueue
- role: datadog
when: ENABLE_DATADOG
- role: splunkforwarder
when: ENABLE_SPLUNKFORWARDER
- role: newrelic
when: ENABLE_NEWRELIC
- oraclejdk - oraclejdk
- elasticsearch - elasticsearch
- rabbitmq - rabbitmq
...@@ -13,6 +28,8 @@ ...@@ -13,6 +28,8 @@
# #
# In order to reconfigure the host resolution we are issuing a # In order to reconfigure the host resolution we are issuing a
# reboot. # reboot.
# TODO: We should probably poll to ensure the host comes back before moving
# to the next host so that we don't reboot all of the servers simultaneously
- hosts: all - hosts: all
sudo: True sudo: True
serial: 1 serial: 1
......
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