File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -45,16 +45,18 @@ hosts: my_host
45
45
es_start_service: false
46
46
es_plugins_reinstall: false
47
47
es_plugins:
48
- - plugin: elasticsearch-cloud-aws
48
+ - plugin: elasticsearch/elasticsearch -cloud-aws
49
49
version: 2.5.0
50
- - plugin: marvel
50
+ - plugin: elasticsearch/ marvel
51
51
version: latest
52
- - plugin: license
52
+ - plugin: elasticsearch/ license
53
53
version: latest
54
- - plugin: shield
54
+ - plugin: elasticsearch/ shield
55
55
version: latest
56
- - plugin: elasticsearch-support-diagnostics
56
+ - plugin: elasticsearch/elasticsearch -support-diagnostics
57
57
version: latest
58
+ - plugin: lmenezes/elasticsearch-kopf
59
+ version: master
58
60
tasks:
59
61
- .... your tasks ...
60
62
```
Original file line number Diff line number Diff line change 7
7
8
8
- name : Install elasticsearch plugins
9
9
# 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
11
11
register : command_result
12
12
failed_when : " 'Failed to install' in command_result.stderr"
13
13
changed_when : command_result.rc == 0
You can’t perform that action at this time.
0 commit comments