summaryrefslogtreecommitdiffstats
path: root/compass/deploy/ansible/openstack_juno/roles/mq/tasks/rabbitmq_cluster.yml
diff options
context:
space:
mode:
authorcarey.xu <carey.xuhan@huawei.com>2015-06-30 14:53:17 +0800
committercarey.xu <carey.xuhan@huawei.com>2015-06-30 14:53:17 +0800
commitd6e99bb0819b1e0675ea642fd81f5bfcd568ebfb (patch)
treef620c37edc195695d3b53f567c250d150e933cdd /compass/deploy/ansible/openstack_juno/roles/mq/tasks/rabbitmq_cluster.yml
parent5847a0f09e22d19eaa8590fdb3b3eb3d6fa2a51b (diff)
update ansible roles directory for supporting commpass-core installing
BGS-80 Change-Id: I97a5d2a9b1f6c799c1976ec1cf6e687b108e0d0f Signed-off-by: carey.xu <carey.xuhan@huawei.com>
Diffstat (limited to 'compass/deploy/ansible/openstack_juno/roles/mq/tasks/rabbitmq_cluster.yml')
-rw-r--r--compass/deploy/ansible/openstack_juno/roles/mq/tasks/rabbitmq_cluster.yml27
1 files changed, 0 insertions, 27 deletions
diff --git a/compass/deploy/ansible/openstack_juno/roles/mq/tasks/rabbitmq_cluster.yml b/compass/deploy/ansible/openstack_juno/roles/mq/tasks/rabbitmq_cluster.yml
deleted file mode 100644
index afd4c77..0000000
--- a/compass/deploy/ansible/openstack_juno/roles/mq/tasks/rabbitmq_cluster.yml
+++ /dev/null
@@ -1,27 +0,0 @@
----
-- name: stop rabbitmq app
- command: rabbitmqctl stop_app
- when: HA_CLUSTER[inventory_hostname] != ''
-
-- name: rabbitmqctl reset
- command: rabbitmqctl reset
- when: HA_CLUSTER[inventory_hostname] != ''
-
-- name: stop rabbitmq
- shell: rabbitmqctl stop
-
-- name: set detach
- shell: rabbitmq-server -detached
-
-- name: join cluster
- command: rabbitmqctl join_cluster rabbit@{{ item }}
- when: item != inventory_hostname and HA_CLUSTER[item] == ''
- with_items:
- groups['controller']
-
-- name: start rabbitmq app
- command: rabbitmqctl start_app
-
-- name: set the HA policy
- rabbitmq_policy: name=ha-all pattern='^(?!amq\.).*' tags="ha-mode=all"
-