Skip to content

Commit

Permalink
[issue-222] - Fix the WildFlyHelmChartProvisionerTest, as the related…
Browse files Browse the repository at this point in the history
… application must explicitly use .build.mode=s2i
  • Loading branch information
fabiobrz authored and marekkopecky committed Jan 23, 2025
1 parent 9c6de35 commit 2a6be00
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ private HelmChartRelease loadRelease(final WildflyHelmChartRelease release) {
// ok, let's configure the release via the WildflyHelmChartRelease fluent(-ish) API,
// which offers a common reference for both WildFly and EAP (latest)
release
// we explicitly set we need an s2i build, ot Bootable JAR, otherwise the OpenJDK image would be
// used since the Bootable JAR mode is the default.
.withBuildMode(WildflyHelmChartRelease.BuildMode.S2I)
.withSourceRepositoryUrl(IntersmashConfig.deploymentsRepositoryUrl())
.withSourceRepositoryRef(IntersmashConfig.deploymentsRepositoryRef())
.withContextDir("testsuite/deployments/openshift-jakarta-sample-standalone")
Expand Down

0 comments on commit 2a6be00

Please sign in to comment.