-
Notifications
You must be signed in to change notification settings - Fork 916
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
[BUG] Dashboards index name has been changed, breaks backward compatibility with existing clusters #325
Comments
We changed default index from .kibana --> .opensearch_dashboards for renaming and legal purpose. Changing default index cause permissions issue for security plugin because opensearch cluster with security plugin don’t have permissions for indices:admin/get. If add it back we still have .kibana index in our code which might cause legal issues. Even no legal issue, it is not a clean fork. Why we keep .kibana as our default index? My suggestion is that we should have opensearch cluster with security plugin to give permissions (add a role) . |
We won't, we just don't want to break absolutely everything for beta1. |
Changing |
@saratvemulapalli is looking at how we can support old index names with backward compatibility, maybe an index alias can work. |
We discussed undoing this change. Assigning the issue to @mihirsoni who had some strong feelings about it to resolve. |
… workspace (opensearch-project#325) * hide datasource and settings menu Signed-off-by: tygao <[email protected]> * Update src/plugins/management/public/components/management_app/management_app.tsx Co-authored-by: SuZhou-Joe <[email protected]> * update to workspace plugin Signed-off-by: tygao <[email protected]> * update Signed-off-by: tygao <[email protected]> * update function name Signed-off-by: tygao <[email protected]> * update test dependency Signed-off-by: tygao <[email protected]> * move function order Signed-off-by: tygao <[email protected]> * Update src/plugins/workspace/public/plugin.ts Co-authored-by: Yulong Ruan <[email protected]> * update management plugin to optional Signed-off-by: tygao <[email protected]> --------- Signed-off-by: tygao <[email protected]> Co-authored-by: SuZhou-Joe <[email protected]> Co-authored-by: Yulong Ruan <[email protected]>
Describe the bug
Kibana used to use
.kibana*
indices in ES cluster, while this behavior is altered after open search name change.Instead of original
.kibana*
indices, it uses.opensearch_dashboards*
indices.This behavior change causes opensearch dashboards fail to startup if security policy is enforced in the backend cluster.
To Reproduce
Expected behavior
Dashboards should still be using
.kibana*
indicesOpenSearch Version
1.0.0-beta1
Dashboards Version
1.0.0-beta1
Plugins
security plugin v1.0.0.0-beta1
Additional Context
Please update any changes needed in security back end after this issue is resolved:
opensearch-project/security#1151
Host/Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: