-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
change file namespace type to multiple-isolated #147198
Conversation
@@ -51,7 +51,7 @@ const properties: Properties = { | |||
export const fileObjectType: SavedObjectsType<FileMetadata> = { | |||
name: FILE_SO_TYPE, | |||
hidden: true, | |||
namespaceType: 'agnostic', | |||
namespaceType: 'multiple-isolated', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reading the docs:
In other words, objects with a "multiple-isolated" namespace type will be share-capable
I guess that means that are not shareable right now? CC @rudolf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct. The security team has docs on what needs to be done to make a multiple-isolated
saved object shareable.
@elasticmachine merge upstream |
@elasticmachine merge upstream |
💚 Build Succeeded
Metrics [docs]Unknown metric groupsESLint disabled in files
ESLint disabled line counts
Total ESLint disabled count
History
To update your PR or re-run it, just comment with: |
## Summary Changes file saved object namespace to `multiple-isolated`. Co-authored-by: Kibana Machine <[email protected]> (cherry picked from commit 0aa6e1c)
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation and see the Github Action logs for details |
) # Backport This will backport the following commits from `main` to `8.6`: - [change file namespace type to multiple-isolated (#147198)](#147198) <!--- Backport version: 8.9.7 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Vadim Kibana","email":"[email protected]"},"sourceCommit":{"committedDate":"2022-12-13T13:24:40Z","message":"change file namespace type to multiple-isolated (#147198)\n\n## Summary\r\n\r\nChanges file saved object namespace to `multiple-isolated`.\r\n\r\nCo-authored-by: Kibana Machine <[email protected]>","sha":"0aa6e1c398ee5945bb9f9dd250dc6f19fad9f561","branchLabelMapping":{"^v8.7.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["backport","release_note:fix","auto-backport","v8.6.0","v8.7.0","v8.6.1"],"number":147198,"url":"https://github.com/elastic/kibana/pull/147198","mergeCommit":{"message":"change file namespace type to multiple-isolated (#147198)\n\n## Summary\r\n\r\nChanges file saved object namespace to `multiple-isolated`.\r\n\r\nCo-authored-by: Kibana Machine <[email protected]>","sha":"0aa6e1c398ee5945bb9f9dd250dc6f19fad9f561"}},"sourceBranch":"main","suggestedTargetBranches":["8.6"],"targetPullRequestStates":[{"branch":"8.6","label":"v8.6.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.7.0","labelRegex":"^v8.7.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/147198","number":147198,"mergeCommit":{"message":"change file namespace type to multiple-isolated (#147198)\n\n## Summary\r\n\r\nChanges file saved object namespace to `multiple-isolated`.\r\n\r\nCo-authored-by: Kibana Machine <[email protected]>","sha":"0aa6e1c398ee5945bb9f9dd250dc6f19fad9f561"}}]}] BACKPORT--> Co-authored-by: Vadim Kibana <[email protected]>
Summary
Changes file saved object namespace to
multiple-isolated
.