Skip to content

Commit

Permalink
Give kibana user read/write access to reindex ml hidden indices
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle committed Feb 6, 2025
1 parent a33708d commit 4be1a7a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ static RoleDescriptor kibanaSystem(String name) {
.indices(".ml-annotations*", ".ml-notifications*")
.privileges("read", "write")
.build(),
// And the reindex indices from v7
RoleDescriptor.IndicesPrivileges.builder()
.indices(".reindexed-v8-ml-annotations*", ".reindexed-v8-ml-notifications*")
.privileges("read", "write")
.build(),

// APM agent configuration - system index defined in KibanaPlugin
RoleDescriptor.IndicesPrivileges.builder()
Expand Down

0 comments on commit 4be1a7a

Please sign in to comment.