mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-13 08:25:26 +00:00
Until now we had a cloud-aws plugin which is providing 2 disctinct features: * discovery on EC2 * snapshot/restore on S3 This commit splits the plugin by feature so people can use either one or the other or both features. Doc is updated accordingly.
15 lines
322 B
YAML
15 lines
322 B
YAML
# Integration tests for Discovery EC2 component
|
|
#
|
|
"Discovery EC2 loaded":
|
|
- do:
|
|
cluster.state: {}
|
|
|
|
# Get master node id
|
|
- set: { master_node: master }
|
|
|
|
- do:
|
|
nodes.info: {}
|
|
|
|
- match: { nodes.$master.plugins.0.name: discovery-ec2 }
|
|
- match: { nodes.$master.plugins.0.jvm: true }
|