Merge pull request #422 from joshpalis/plugins-doc

Modified plugin documentation by clarifying valid plugin ID inputs
This commit is contained in:
CEHENKLE 2022-02-25 13:18:07 -08:00 committed by GitHub
commit 9d9c9bf020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -21,9 +21,22 @@ You can install individual plugins on an OpenSearch cluster.
## Install a plugin
The install command takes a plugin id, which may be any of the following:
- An official OpenSearch plugin name
- Maven coordinates to a plugin zip file
- A URL to a plugin zip file
If you're installing an official OpenSearch plugin, use:
```
bin/opensearch-plugin install <plugin-name>
```
For a plugin installed via zip, use:
```
bin/opensearch-plugin install <name|Zip File|Url>
```
Restart your OpenSearch node after installing a plugin.
## Remove a plugin