Commit 7a171023 by e0d

Installing the bigdesk monitoring plugin.

parent 31c7e58a
......@@ -70,5 +70,17 @@
mode=0744
when: ELASTICSEARCH_CLUSTERED
# Plugin installation fails hard when the plugin already
# exists. This is problematic of this is upgraded.
- name: check if the bigdesk plugin is installed
command: test -d /usr/share/elasticsearch/plugins/bigdesk
ignore_errors: true
register: bigdesk_present
- name: install bigdesk plugin
shell: >
/usr/share/elasticsearch/bin/plugin -install lukas-vlcek/bigdesk/2.2.0
when: bigdesk_present|failed
- 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