Precreate the plugins directory to avoid errors in Mirror Maker 2 pods #9607
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.
Type of change
Description
In Connect and MM2, we preconfigure the
plugin.path
option to/opt/kafka/plugins
. But out of the box, this directory does not exist. And that causes the following error:It is just a log message without causing any crash-looping, but it is not great if it can be avoided. With Connect, the general expectation is that users will add connectors and create the plugin directory that way. But in Mirror Maker 2, users normally don't add plugins, so this directory is almost always missing.
This PR pre-creates the directly already in the base image and leaves it empty. That helps us avoid the error even if the base image is used directly such as in MM2.
Checklist