-
Enhancement
-
Resolution: Unresolved
-
Major
-
2.7.3.Final
-
3
-
False
-
None
-
False
-
-
-
- Documentation for using the JDBC Sink Connector in an OpenShift environment
- We have not provided examples of KafkaConnect CR Yaml or KafkaConnector CR Yaml for making JDBC Sink Connector work with OpenShift.
- We are receiving inquiries via support cases from customers who cannot figure out how to make the JDBC Sink Connector work with OpenShift.
- FYI, the following is an example configuration:
~~~ apiVersion: kafka.strimzi.io/v1beta2 kind: KafkaConnect ... spec: ... build: ... plugins: ... - name: debezium-jdbc-connector artifacts: - type: zip url: https://maven.repository.redhat.com/ga/io/debezium/debezium-connector-jdbc/2.7.3.Final-redhat-00003/debezium-connector-jdbc-2.7.3.Final-redhat-00003-plugin.zip - type: jar url: 'https://repo1.maven.org/maven2/com/oracle/database/jdbc/ojdbc8/21.6.0.0/ojdbc8-21.6.0.0.jar' ~~~ ~~~ apiVersion: kafka.strimzi.io/v1beta2 kind: KafkaConnector ... spec: ... config: connection.url: jdbc:postgresql://postgresql-target:5432/postgresql-target connection.username: "postgresql-target" connection.password: "postgresql-target" ~~~