Skip to content

Commit f619650

Browse files
authored
Merge pull request #1219 from oracle/owls-76450-jrf
PR: owls-76450 fix the JRF domain creation issue
2 parents c2ed32a + 50c44e6 commit f619650

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/JrfInOperatorTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ public static void staticUnPrepare() throws Exception {
9393
*/
9494
@Test
9595
public void testJrfDomainOnPvUsingWlst() throws Exception {
96+
Assume.assumeTrue(QUICKTEST);
9697
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
9798
logTestBegin(testMethodName);
9899
logger.info("Creating Operator & waiting for the script to complete execution");

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Domain.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,11 @@ protected void initialize(Map<String, Object> inputDomainMap) throws Exception {
15341534
if (domainMap.containsKey("domainHomeImageBase")) {
15351535
sampleDomainInputsFile =
15361536
"/samples/scripts/create-weblogic-domain/domain-home-in-image/create-domain-inputs.yaml";
1537+
} else if (domainMap.containsKey("rcuDatabaseURL")) {
1538+
sampleDomainInputsFile =
1539+
"/samples/scripts/create-fmw-infrastructure-domain/domain-home-on-pv/create-domain-inputs.yaml";
15371540
}
1541+
logger.info("For this domain sampleDomainInputsFile is: " + sampleDomainInputsFile);
15381542
Yaml dyaml = new Yaml();
15391543
InputStream sampleDomainInputStream =
15401544
new FileInputStream(new File(BaseTest.getResultDir() + sampleDomainInputsFile));

0 commit comments

Comments
 (0)