Skip to content

Commit

Permalink
feat: use image built on demo and e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
jeqo committed Aug 23, 2023
1 parent 7ce19df commit 70bca21
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
# limitations under the License.
##
VERSION := $(shell grep -oP 'version=\K[^[:space:]]+' gradle.properties)
IMAGE_TAG=aivenoy/kafka:3.3-2022-10-06-tiered-storage-1-ts-2
IMAGE_NAME := aivenoy/kafka-with-ts-plugin
IMAGE_VERSION := latest
IMAGE_TAG := $(IMAGE_NAME):$(IMAGE_VERSION)

.PHONY: clean checkstyle build integration_test e2e_test docker_image docker_push

Expand Down
2 changes: 1 addition & 1 deletion demo/compose-local-fs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
ZOOKEEPER_CLIENT_PORT: 2181

kafka:
image: "aivenoy/kafka:3.3-2022-10-06-tiered-storage-1-ts-2"
image: "aivenoy/kafka-with-ts-plugin"
container_name: "kafka-ts"
depends_on:
- zookeeper
Expand Down
2 changes: 1 addition & 1 deletion demo/compose-s3-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
ZOOKEEPER_CLIENT_PORT: 2181

kafka:
image: "aivenoy/kafka:3.3-2022-10-06-tiered-storage-1-ts-2"
image: "aivenoy/kafka-with-ts-plugin"
container_name: "kafka-ts"
depends_on:
- zookeeper
Expand Down
2 changes: 1 addition & 1 deletion demo/compose-s3-minio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
ZOOKEEPER_CLIENT_PORT: 2181

kafka:
image: "aivenoy/kafka:3.3-2022-10-06-tiered-storage-1-ts-2"
image: "aivenoy/kafka-with-ts-plugin"
container_name: "kafka-ts"
depends_on:
- zookeeper
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static void setupKafka(final Consumer<KafkaContainer> tsPluginSetup) {
throw new RuntimeException(e);
}

kafka = new KafkaContainer(DockerImageName.parse("aivenoy/kafka:3.3-2022-10-06-tiered-storage-1-ts-1")
kafka = new KafkaContainer(DockerImageName.parse("aivenoy/kafka-with-ts-plugin")
.asCompatibleSubstituteFor("confluentinc/cp-kafka")
)
.withEnv("KAFKA_AUTO_CREATE_TOPICS_ENABLE", "false")
Expand Down

0 comments on commit 70bca21

Please sign in to comment.