Skip to content

Commit

Permalink
Bump confluentinc/cp-kcat from 7.4.1 to 7.9.0 (#10000)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianladisch authored Feb 21, 2025
1 parent 5af66d7 commit 6e104da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class KCatContainer extends GenericContainer<KCatContainer> {

public KCatContainer() {
super("confluentinc/cp-kcat:7.4.1");
super("confluentinc/cp-kcat:7.9.0");
withCreateContainerCmdModifier(cmd -> {
cmd.withEntrypoint("sh");
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public void testUsageWithListener() throws Exception {
.withNetwork(network);
// }
// createKCatContainer {
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.4.1")
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.9.0")
.withCreateContainerCmdModifier(cmd -> {
cmd.withEntrypoint("sh");
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void testUsageWithListener() throws Exception {
RedpandaContainer redpanda = new RedpandaContainer("docker.redpanda.com/redpandadata/redpanda:v23.1.7")
.withListener(() -> "redpanda:19092")
.withNetwork(network);
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.4.1")
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.9.0")
.withCreateContainerCmdModifier(cmd -> {
cmd.withEntrypoint("sh");
})
Expand Down Expand Up @@ -141,7 +141,7 @@ public void testUsageWithListenerInTheSameNetwork() throws Exception {
.withNetwork(network);
// }
// createKCatContainer {
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.4.1")
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.9.0")
.withCreateContainerCmdModifier(cmd -> {
cmd.withEntrypoint("sh");
})
Expand Down Expand Up @@ -200,7 +200,7 @@ public void testUsageWithListenerAndSasl() throws Exception {
.withSuperuser("panda")
.withListener("my-panda:29092")
.withNetwork(network);
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.4.1")
GenericContainer<?> kcat = new GenericContainer<>("confluentinc/cp-kcat:7.9.0")
.withCreateContainerCmdModifier(cmd -> {
cmd.withEntrypoint("sh");
})
Expand Down

0 comments on commit 6e104da

Please sign in to comment.