Skip to content

Commit 444cab9

Browse files
committed
Move to full-path plugins
1 parent 14df6c8 commit 444cab9

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,18 @@ hosts: my_host
4545
es_start_service: false
4646
es_plugins_reinstall: false
4747
es_plugins:
48-
- plugin: elasticsearch-cloud-aws
48+
- plugin: elasticsearch/elasticsearch-cloud-aws
4949
version: 2.5.0
50-
- plugin: marvel
50+
- plugin: elasticsearch/marvel
5151
version: latest
52-
- plugin: license
52+
- plugin: elasticsearch/license
5353
version: latest
54-
- plugin: shield
54+
- plugin: elasticsearch/shield
5555
version: latest
56-
- plugin: elasticsearch-support-diagnostics
56+
- plugin: elasticsearch/elasticsearch-support-diagnostics
5757
version: latest
58+
- plugin: lmenezes/elasticsearch-kopf
59+
version: master
5860
tasks:
5961
- .... your tasks ...
6062
```

tasks/elasticsearch-plugins.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
- name: Install elasticsearch plugins
99
#debug: var=item
10-
command: /usr/share/elasticsearch/bin/plugin --install elasticsearch/{{ item.plugin }}/{{ item.version }} --silent
10+
command: /usr/share/elasticsearch/bin/plugin --install {{ item.plugin }}/{{ item.version }} --silent
1111
register: command_result
1212
failed_when: "'Failed to install' in command_result.stderr"
1313
changed_when: command_result.rc == 0

0 commit comments

Comments
 (0)