Creating a KafkaConnect image from a maven repository #6925
-
I'm trying too build a connect image using maven for retrieving an elasticsearch-connector. But apparently strimzi doesn't recognize the used configuration: Here is my KafkaConnect yaml file:
Noting that I'm trying to use maven as a plugin source, because the connectors jars are missing some java dependencies |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 14 replies
-
What does it mean doesn't recognize the used configuration. I think you need to share more details, logs, statuses etc. |
Beta Was this translation helpful? Give feedback.
-
When I try to create a jar from a maven repo like this:
I have the following error when trying to update the cluster:
I'm using strimzi 0.29.0 |
Beta Was this translation helpful? Give feedback.
-
I ran across this same issue yesterday with the Confluent repository, here is what I did to solve it for the moment
And then the
And that was it and it successfully built and deployed KafkaConnect with Confluent plugins from their registry even though their It could be nice if Strimzi somehow allowed us to specify the maven-builder user settings via the chart and then build that settings.xml file within the default maven-builder image when people might need to configure Maven for any reason. |
Beta Was this translation helpful? Give feedback.
-
Your error message told you what the problem was:
Change
to (remove "Id")
|
Beta Was this translation helpful? Give feedback.
I ran across this same issue yesterday with the Confluent repository, here is what I did to solve it for the moment
settings.xml
file with additional repositories that Maven should use to look for dependencies.