-
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
Allow optional OSS to X-Pack dependencies #107432
Changes from 4 commits
0792111
774ae1b
c54c2b5
daebba1
89e3cc8
b6a38a7
07bb8ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,6 +336,18 @@ export class PluginsService implements CoreService<PluginsServiceSetup, PluginsS | |
} | ||
} | ||
|
||
// validate that OSS plugins do not have required dependencies on X-Pack plugins | ||
if (plugin.source === 'oss') { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. optional: the validation path is growing too large. @elastic/kibana-core we need to move it under a dedicated method to simplify reading. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done in b6a38a7 |
||
for (const id of [...plugin.requiredPlugins, ...plugin.requiredBundles]) { | ||
const requiredPlugin = pluginEnableStatuses.get(id); | ||
if (requiredPlugin && requiredPlugin.plugin.source === 'x-pack') { | ||
throw new Error( | ||
`X-Pack plugin or bundle with id "${id}" is required by OSS plugin "${pluginName}", which is prohibited. Consider making this an optional dependency instead.` | ||
); | ||
} | ||
} | ||
} | ||
|
||
const pluginEnablement = this.shouldEnablePlugin(pluginName, pluginEnableStatuses); | ||
|
||
if (pluginEnablement.enabled) { | ||
|
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.
should we add an explicit test when an
external
plugin depends onoss
andx-pack
?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.
Done in 07bb8ec
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.
I'll merge this now, if you have any additional concerns about tests I'd be happy to address them in a follow up PR!