Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spec: add plugins to NodeInfoSettings #442

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/opensearch-cluster/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ services:
environment:
- 'OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_PASSWORD:-myStrongPassword123!}'
- discovery.type=single-node
- path.repo=/tmp/opensearch/repo
- path.repo=/tmp/opensearch/repo
- plugins.index_state_management.job_interval=1
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Added `is_hidden` to `/{index}/_alias/{name}` and `/{index}/_aliases/{name}` ([#429](https://github.com/opensearch-project/opensearch-api-specification/pull/429))
- Added `ignore_unmapped` to `GeoDistanceQuery` ([#427](https://github.com/opensearch-project/opensearch-api-specification/pull/427))
- Added missing variants of `indices.put_alias` ([#434](https://github.com/opensearch-project/opensearch-api-specification/pull/434))
- Added `plugins` to NodeInfoSettings ([#442](https://github.com/opensearch-project/opensearch-api-specification/pull/442))

### Changed

Expand Down
8 changes: 7 additions & 1 deletion spec/schemas/nodes.info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,8 @@ components:
$ref: '#/components/schemas/NodeInfoSettingsIngest'
index:
$ref: '#/components/schemas/NodeInfoSettingsIndex'
plugins:
$ref: '#/components/schemas/NodeInfoSettingsPlugins'
required:
- client
- cluster
Expand Down Expand Up @@ -631,6 +633,10 @@ components:
type: array
items:
type: string
NodeInfoSettingsPlugins:
type: object
additionalProperties:
$ref: '_common.yaml#/components/schemas/FieldValue'
NodeThreadPoolInfo:
type: object
properties:
Expand Down Expand Up @@ -704,4 +710,4 @@ components:
$ref: '#/components/schemas/NodeInfoIngestProcessor'
required:
- request_processors
- response_processors
- response_processors
Loading