Skip to content

Commit

Permalink
[Deprecation] Deprecate master nodes and replace with cluster_manager…
Browse files Browse the repository at this point in the history
… nodes (#1761) (#1779)

As part of the meta issue opensearch-project/OpenSearch#2589 to track the plan and progress of applying inclusive naming across OpenSearch Repositories

Issue - #1688

Signed-off-by: manasvinibs <[email protected]>
(cherry picked from commit 6aba08a)

Signed-off-by: Manasvini B Suryanarayana <[email protected]>

Co-authored-by: Manasvini B Suryanarayana <[email protected]>
  • Loading branch information
opensearch-trigger-bot[bot] and manasvinibs authored Jun 23, 2022
1 parent 68f1964 commit 669473d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/plugins/console/public/lib/osd/osd.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,17 @@ const parametrizedComponentFactories = {
nodes: function (name, parent) {
return new ListComponent(
name,
['_local', '_master', 'data:true', 'data:false', 'master:true', 'master:false'],
[
'_local',
'_master',
'_cluster_manager',
'data:true',
'data:false',
'master:true',
'cluster_manager:true',
'master:false',
'cluster_manager:false',
],
parent
);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"_all",
"blocks",
"master_node",
"cluster_manager_node",
"metadata",
"nodes",
"routing_nodes",
Expand Down

0 comments on commit 669473d

Please sign in to comment.