feat(connectors): ship connector plugins in the iggy-connect docker image#3658
Open
kriti-sc wants to merge 8 commits into
Open
feat(connectors): ship connector plugins in the iggy-connect docker image#3658kriti-sc wants to merge 8 commits into
kriti-sc wants to merge 8 commits into
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3658 +/- ##
=============================================
- Coverage 73.99% 15.99% -58.00%
Complexity 937 937
=============================================
Files 1301 1299 -2
Lines 147393 128363 -19030
Branches 122945 103990 -18955
=============================================
- Hits 109063 20538 -88525
- Misses 34858 107325 +72467
+ Partials 3472 500 -2972
🚀 New features to boost your workflow:
|
kriti-sc
marked this pull request as ready for review
July 19, 2026 18:18
Contributor
Author
|
/ready |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #3614
Rationale
Dynamically inject plugins to the
apache/iggy-connectimage to reduce friction for testing out connectors.What changed?
This change publishes the image in two flavors:
Fat (edge, x.y.z, latest): the runtime plus every connector plugin baked into /usr/local/lib, which is already on the runtime's plugin search path. A config can load a bundled plugin by file name with no path. This is the new default.
Slim (edge-slim, x.y.z-slim, latest-slim): the runtime binary only, i.e. today's image, for deployments that bring their own plugins.
To this end:
Local Execution
AI Usage