Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion testsuite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## WildFly MicroProfile Reactive Messaging + Kafka

This tests validates an interoperability use case based on a WildFly/JBoss EAP XP MicroProfile Reactive
This tests validates an interoperability use case based on a WildFly/JBoss EAP MicroProfile Reactive
Messaging interacting with a remote Kafka/Streams for Apache Kafka service.

## WildFly Elytron OIDC client + Keycloak
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ private HelmChartRelease loadRelease(final WildflyHelmChartRelease release) thro
.withBuildMode(WildflyHelmChartRelease.BuildMode.BOOTABLE_JAR)
.withSourceRepositoryUrl(IntersmashConfig.deploymentsRepositoryUrl())
.withSourceRepositoryRef(IntersmashConfig.deploymentsRepositoryRef())
// TODO: check why jdk17 / jdk21 in `intersmash.bootable.jar.image=registry.access.redhat.com/ubi8/openjdk-17` and `intersmash.wildfly.image=quay.io/wildfly/wildfly-s2i:2.1.0-jdk21`
.withJdk17BuilderImage(IntersmashConfig.wildflyImageURL())
.withJdk17RuntimeImage(IntersmashConfig.wildflyRuntimeImageURL())
.withBuildEnvironmentVariables(buildEnvironmentVariables)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ private HelmChartRelease loadRelease(final WildflyHelmChartRelease release) thro
.withBuildMode(WildflyHelmChartRelease.BuildMode.BOOTABLE_JAR)
.withSourceRepositoryUrl(IntersmashConfig.deploymentsRepositoryUrl())
.withSourceRepositoryRef(IntersmashConfig.deploymentsRepositoryRef())
// TODO: check why jdk17 / jdk21 in `intersmash.bootable.jar.image=registry.access.redhat.com/ubi8/openjdk-17` and `intersmash.wildfly.image=quay.io/wildfly/wildfly-s2i:2.1.0-jdk21`
.withJdk17BuilderImage(IntersmashConfig.wildflyImageURL())
.withJdk17RuntimeImage(IntersmashConfig.wildflyRuntimeImageURL())
.withBuildEnvironmentVariables(buildEnvironmentVariables)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@

/**
* Provides a Kafka/Streams for Apache Kafka service which is required by
* {@link WildflyMicroProfileReactiveMessagingPerConnectorSecuredIT},
* {@link WildflyBootableJarGloballySecuredKafkaIT},
* {@link WildflyS2iPerConnectorSecuredKafkaIT},
* and deployed via the Strimzi/Streams for Apache Kafka operator.
*/
public class KafkaMicroProfileReactiveMessagingApplication implements KafkaOperatorApplication, OpenShiftApplication {
Expand Down
Loading