mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
1b0492f800
Just to be consistent in plugin naming convention we have today: `plugin_type-plugin_name` So it's a `site` plugin.
16 lines
371 B
YAML
16 lines
371 B
YAML
# Integration tests for Example site plugin
|
|
#
|
|
"Example site loaded":
|
|
- do:
|
|
cluster.state: {}
|
|
|
|
# Get master node id
|
|
- set: { master_node: master }
|
|
|
|
- do:
|
|
nodes.info: {}
|
|
|
|
- match: { nodes.$master.plugins.0.name: site-example }
|
|
- match: { nodes.$master.plugins.0.jvm: false }
|
|
- match: { nodes.$master.plugins.0.site: true }
|