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 6
6
public class KCatContainer extends GenericContainer <KCatContainer > {
7
7
8
8
public KCatContainer () {
9
- super ("confluentinc/cp-kcat:7.4.1 " );
9
+ super ("confluentinc/cp-kcat:7.9.0 " );
10
10
withCreateContainerCmdModifier (cmd -> {
11
11
cmd .withEntrypoint ("sh" );
12
12
});
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ public void testUsageWithListener() throws Exception {
195
195
.withNetwork (network );
196
196
// }
197
197
// createKCatContainer {
198
- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
198
+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
199
199
.withCreateContainerCmdModifier (cmd -> {
200
200
cmd .withEntrypoint ("sh" );
201
201
})
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ public void testUsageWithListener() throws Exception {
111
111
RedpandaContainer redpanda = new RedpandaContainer ("docker.redpanda.com/redpandadata/redpanda:v23.1.7" )
112
112
.withListener (() -> "redpanda:19092" )
113
113
.withNetwork (network );
114
- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
114
+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
115
115
.withCreateContainerCmdModifier (cmd -> {
116
116
cmd .withEntrypoint ("sh" );
117
117
})
@@ -141,7 +141,7 @@ public void testUsageWithListenerInTheSameNetwork() throws Exception {
141
141
.withNetwork (network );
142
142
// }
143
143
// createKCatContainer {
144
- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
144
+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
145
145
.withCreateContainerCmdModifier (cmd -> {
146
146
cmd .withEntrypoint ("sh" );
147
147
})
@@ -200,7 +200,7 @@ public void testUsageWithListenerAndSasl() throws Exception {
200
200
.withSuperuser ("panda" )
201
201
.withListener ("my-panda:29092" )
202
202
.withNetwork (network );
203
- GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.4.1 " )
203
+ GenericContainer <?> kcat = new GenericContainer <>("confluentinc/cp-kcat:7.9.0 " )
204
204
.withCreateContainerCmdModifier (cmd -> {
205
205
cmd .withEntrypoint ("sh" );
206
206
})
You can’t perform that action at this time.
0 commit comments