You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -70,7 +70,7 @@ You can create a Docker image packaged with the locally built source by running
70
70
make build-docker-from-local CP_VERSION=5.5.0
71
71
```
72
72
73
-
This will build the connector from source and create a local image with an aggregate version number. The aggregate version number is the kafka-connect-datagen connector version number and the Confluent Platform version number separated with a `-`. The local kafka-connect-datagen version number is defined in the `pom.xml` file, and the Confluent Platform version defined in the [Makefile](Makfile). An example of the aggregate version number might be: `0.3.2-5.5.0`.
73
+
This will build the connector from source and create a local image with an aggregate version number. The aggregate version number is the kafka-connect-datagen connector version number and the Confluent Platform version number separated with a `-`. The local kafka-connect-datagen version number is defined in the `pom.xml` file, and the Confluent Platform version defined in the [Makefile](Makfile). An example of the aggregate version number might be: `0.4.0-6.0.0`.
74
74
75
75
Alternatively, you can install the `kafka-connect-datagen` connector from [Confluent Hub](https://www.confluent.io/connector/kafka-connect-datagen/) into a Docker image by running:
76
76
```bash
@@ -80,9 +80,9 @@ make build-docker-from-released CP_VERSION=5.5.0
80
80
The [Makefile](Makefile) contains some default variables that affect the version numbers of both the installed `kafka-connect-datagen` as well as the base Confluent Platform version. The variables are located near the top of the [Makefile](Makefile) with the following names and current default values:
81
81
82
82
```bash
83
-
CP_VERSION ?= 5.5.0
83
+
CP_VERSION ?= 6.0.0
84
84
85
-
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.2
85
+
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.4.0
86
86
```
87
87
These values can be overriden with variable declarations before the `make` command. For example:
88
88
@@ -247,8 +247,8 @@ To release new versions of the Docker images to Dockerhub (https://hub.docker.co
247
247
The [Makefile](Makefile) contains some default variables that affect the version numbers of both the installed `kafka-connect-datagen` as well as the base Confluent Platform version. The variables are located near the top of the [Makefile](Makefile) with the following names and current default values:
248
248
249
249
```bash
250
-
CP_VERSION ?= 5.5.0
251
-
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.2
250
+
CP_VERSION ?= 6.0.0
251
+
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.4.0
252
252
OPERATOR_VERSION ?= 0 # Operator is a 'rev' version appended at the end of the CP version, like so: 5.5.0.0
0 commit comments