Skip to content

Commit

Permalink
[incubator-kie-issues-1682] Test cases in kogito repos GHA fail with … (
Browse files Browse the repository at this point in the history
apache#3812)

* [incubator-kie-issues-1682] Test cases in kogito repos GHA fail with "pull access denied for vectorized/redpanda"

* Fix advertise-kafka-addr in script command

---------

Co-authored-by: gmunozfe <[email protected]>
  • Loading branch information
2 people authored and rgdoliveira committed Dec 17, 2024
1 parent 880cc58 commit bc0702c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion kogito-build/kogito-build-no-bom-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<!-- container images for testing -->
<container.image.infinispan>infinispan/server:${version.org.infinispan}</container.image.infinispan>
<container.image.keycloak>quay.io/keycloak/keycloak:${version.org.keycloak}</container.image.keycloak>
<container.image.kafka>vectorized/redpanda:v21.11.8</container.image.kafka>
<container.image.kafka>redpandadata/redpanda:v24.3.1</container.image.kafka>
<container.image.wurstmeister.kafka>wurstmeister/kafka:${version.wurstmeister.kafka}</container.image.wurstmeister.kafka>
<container.image.mongodb>library/mongo:${version.org.mongo-image}</container.image.mongodb>
<container.image.redis>redislabs/redisearch:${version.org.redis}</container.image.redis>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,13 @@ public KogitoKafkaContainer() {
@Override
protected void containerIsStarting(InspectContainerResponse containerInfo, boolean reused) {
super.containerIsStarting(containerInfo, reused);
String brokerAdvertisedListener = brokerAdvertisedListener(containerInfo);

// Start and configure the advertised address
String command = "#!/bin/bash\n";
command += "/usr/bin/rpk redpanda start --check=false --node-id 0 --smp 1 ";
command += "--memory 1G --overprovisioned --reserve-memory 0M ";
command += "--kafka-addr PLAINTEXT://0.0.0.0:29092,OUTSIDE://0.0.0.0:9092 ";
command += format("--advertise-kafka-addr %s ", String.join(",", getBootstrapServers(), brokerAdvertisedListener));
command += "--advertise-kafka-addr PLAINTEXT://kafka:29092,OUTSIDE://" + getHost() + ":" + getMappedPort(KAFKA_PORT) + " ";
command += "--set redpanda.enable_idempotence=true ";
command += "--set redpanda.enable_transactions=true ";

Expand All @@ -73,10 +72,6 @@ public void start() {
LOGGER.info("Kafka servers: {}", getBootstrapServers());
}

protected String brokerAdvertisedListener(InspectContainerResponse containerInfo) {
return String.format("PLAINTEXT://%s:29092", containerInfo.getConfig().getHostName());
}

public String getBootstrapServers() {
return format("OUTSIDE://%s:%d", getHost(), getMappedPort(KAFKA_PORT));
}
Expand Down

0 comments on commit bc0702c

Please sign in to comment.