File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
tests/Testcontainers.Kafka.Tests Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace Testcontainers.Kafka;
55public sealed class KafkaBuilder : ContainerBuilder < KafkaBuilder , KafkaContainer , KafkaConfiguration >
66{
77 [ Obsolete ( "This constant is obsolete and will be removed in the future. Use the constructor with the image parameter instead: https://github.com/testcontainers/testcontainers-dotnet/discussions/1470#discussioncomment-15185721." ) ]
8- public const string KafkaImage = "confluentinc/cp-kafka:7.5.9 " ;
8+ public const string KafkaImage = "confluentinc/cp-kafka:7.5.12 " ;
99
1010 public const ushort KafkaPort = 9092 ;
1111
@@ -39,7 +39,7 @@ public KafkaBuilder()
3939 /// </summary>
4040 /// <param name="image">
4141 /// The full Docker image name, including the image repository and tag
42- /// (e.g., <c>confluentinc/cp-kafka:7.5.9 </c>).
42+ /// (e.g., <c>confluentinc/cp-kafka:7.5.12 </c>).
4343 /// </param>
4444 /// <remarks>
4545 /// Docker image tags available at <see href="https://hub.docker.com/r/confluentinc/cp-kafka/tags" />.
Original file line number Diff line number Diff line change 1- FROM confluentinc/cp-kafka:7.5.9
2- FROM apache/kafka:3.9 .1 AS kafka3.9 .1
3- FROM apache/kafka-native:3.9 .1 AS kafka-native3.9 .1
1+ FROM confluentinc/cp-kafka:7.5.12
2+ FROM apache/kafka:4.1 .1 AS kafka4.1 .1
3+ FROM apache/kafka-native:4.1 .1 AS kafka-native4.1 .1
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public KafkaZooKeeperConfiguration()
9999 public sealed class ApacheKafkaConfiguration : KafkaContainerTest
100100 {
101101 public ApacheKafkaConfiguration ( )
102- : base ( new KafkaBuilder ( TestSession . GetImageFromDockerfile ( stage : "kafka3.9 .1" ) )
102+ : base ( new KafkaBuilder ( TestSession . GetImageFromDockerfile ( stage : "kafka4.1 .1" ) )
103103 . Build ( ) )
104104 {
105105 }
@@ -109,7 +109,7 @@ public ApacheKafkaConfiguration()
109109 public sealed class ApacheKafkaNativeConfiguration : KafkaContainerTest
110110 {
111111 public ApacheKafkaNativeConfiguration ( )
112- : base ( new KafkaBuilder ( TestSession . GetImageFromDockerfile ( stage : "kafka-native3.9 .1" ) )
112+ : base ( new KafkaBuilder ( TestSession . GetImageFromDockerfile ( stage : "kafka-native4.1 .1" ) )
113113 . Build ( ) )
114114 {
115115 }
You can’t perform that action at this time.
0 commit comments