This command in my Dockerfile
RUN bin/opensearch-plugin install --batch --silent opensearch-index-management
Responds with this:
> [stage-3 2/4] RUN bin/opensearch-plugin install --batch --silent opensearch-index-management:
#13 1.421 Non-option arguments:
#13 1.421 command
#13 1.421
#13 1.421 Option Description
#13 1.421 ------ -----------
#13 1.421 -E <KeyValuePair> Configure a setting
#13 1.421 -h, --help Show help
#13 1.421 -s, --silent Show minimal output
#13 1.421 -v, --verbose Show verbose output
#13 1.421 ERROR: Unknown plugin opensearch-index-management
I want to make use of the Index State Management API, which I believe is part of that plugin.
Shouldn’t it be available in the OpenSearch (v1.2.4) base image?