Commit 79393710 by e0d

Merge pull request #747 from edx/e0d/es-bigdesk-plugin

Installing the bigdesk monitoring plugin.
parents 31c7e58a 4c93e4d2
......@@ -70,5 +70,17 @@
mode=0744
when: ELASTICSEARCH_CLUSTERED
# Plugin installation fails hard when the plugin already
# exists. This is problematic if this is upgraded.
- name: check if the bigdesk plugin is installed
stat: path=/usr/share/elasticsearch/plugins/bigdesk
register: bigdesk
- name: install bigdesk plugin
shell: >
/usr/share/elasticsearch/bin/plugin -install lukas-vlcek/bigdesk/2.2.0
when: bigdesk.stat.isdir is defined and bigdesk.stat.isdir == false
- name: Ensure elasticsearch is enabled and started
service: name=elasticsearch state=restarted enabled=yes
\ No newline at end of file
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