You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/07/30 08:17:49 UTC

[camel] branch main updated: CAMEL-19661: upgrade Strimzi container to use Kafka 3.5.1 (#10911)

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 356a14f3a68 CAMEL-19661: upgrade Strimzi container to use Kafka 3.5.1 (#10911)
356a14f3a68 is described below

commit 356a14f3a68baa1ab6125eb405b791b23a701862
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Sun Jul 30 10:17:43 2023 +0200

    CAMEL-19661: upgrade Strimzi container to use Kafka 3.5.1 (#10911)
    
    Signed-off-by: Otavio R. Piske <an...@gmail.com>
---
 .../org/apache/camel/test/infra/kafka/services/StrimziContainer.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/StrimziContainer.java b/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/StrimziContainer.java
index 7287d664209..3ad74029b5c 100644
--- a/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/StrimziContainer.java
+++ b/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/StrimziContainer.java
@@ -23,7 +23,7 @@ import org.testcontainers.containers.Network;
 import org.testcontainers.containers.wait.strategy.Wait;
 
 public class StrimziContainer extends GenericContainer<StrimziContainer> {
-    public static final String DEFAULT_STRIMZI_CONTAINER = "quay.io/strimzi/kafka:latest-kafka-3.4.0";
+    public static final String DEFAULT_STRIMZI_CONTAINER = "quay.io/strimzi/kafka:latest-kafka-3.5.1";
     private static final String STRIMZI_CONTAINER
             = System.getProperty("itest.strimzi.container.image", DEFAULT_STRIMZI_CONTAINER);
     private static final int KAFKA_PORT = 9092;