File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
kafka/src/test/java/org/testcontainers
redpanda/src/test/java/org/testcontainers/redpanda Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 66public class KCatContainer extends GenericContainer <KCatContainer > {
77
88 public KCatContainer () {
9- super ("confluentinc/cp-kcat:7.4.1 " );
9+ super ("confluentinc/cp-kcat:7.9.0 " );
1010 withCreateContainerCmdModifier (cmd -> {
1111 cmd .withEntrypoint ("sh" );
1212 });
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ public void testUsageWithListener() throws Exception {
195195 .withNetwork (network );
196196 // }
197197 // createKCatContainer {
198- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
198+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
199199 .withCreateContainerCmdModifier (cmd -> {
200200 cmd .withEntrypoint ("sh" );
201201 })
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ public void testUsageWithListener() throws Exception {
111111 RedpandaContainer redpanda = new RedpandaContainer ("docker.redpanda.com/redpandadata/redpanda:v23.1.7" )
112112 .withListener (() -> "redpanda:19092" )
113113 .withNetwork (network );
114- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
114+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
115115 .withCreateContainerCmdModifier (cmd -> {
116116 cmd .withEntrypoint ("sh" );
117117 })
@@ -141,7 +141,7 @@ public void testUsageWithListenerInTheSameNetwork() throws Exception {
141141 .withNetwork (network );
142142 // }
143143 // createKCatContainer {
144- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
144+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
145145 .withCreateContainerCmdModifier (cmd -> {
146146 cmd .withEntrypoint ("sh" );
147147 })
@@ -200,7 +200,7 @@ public void testUsageWithListenerAndSasl() throws Exception {
200200 .withSuperuser ("panda" )
201201 .withListener ("my-panda:29092" )
202202 .withNetwork (network );
203- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
203+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
204204 .withCreateContainerCmdModifier (cmd -> {
205205 cmd .withEntrypoint ("sh" );
206206 })
You can’t perform that action at this time.
0 commit comments