Skip to content

[8.1] No longer require master node to install Watcher templates (#85287) #85294

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

Merged
merged 1 commit into from
Mar 23, 2022
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
6 changes: 6 additions & 0 deletions docs/changelog/85287.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 85287
summary: No longer require master node to install Watcher templates
area: Watcher
type: bug
issues:
- 85043
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,4 @@ public static boolean validate(ClusterState state) {
.map(s -> Integer.valueOf(s.substring(s.lastIndexOf('-') + 1)))
.anyMatch(version -> version >= 12);
}

@Override
protected boolean requiresMasterNode() {
// These installs a composable index template which is only supported in early versions of 7.x
// In mixed cluster without this set to true can result in errors in the logs during rolling upgrades.
// If these template(s) are only installed via elected master node then composable templates are available.
return true;
}
}