Skip to content

Commit 7880914

Browse files
committed
disable host name verification in testJRFDomainAdminPortEnabled
1 parent 8cf4e5a commit 7880914

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,12 @@ public void testJRFDomainAdminPortEnabled() throws Exception {
286286
domain1Map.put(
287287
"createDomainPyScript",
288288
"integration-tests/src/test/resources/domain-home-on-pv/create-jrfdomain-admin-port-enabled.py");
289+
// Disables host name verification, which enables you to use the demonstration digital
290+
// certificates that are shipped with WebLogic Server.
291+
// https://docs.oracle.com/middleware/12213/wls/ADMRF/weblogicserver.htm#ADMRF202
292+
domain1Map.put(
293+
"javaOptions",
294+
"-Dweblogic.StdoutDebugEnabled=false -Dweblogic.security.SSL.ignoreHostnameVerification=true");
289295

290296
// run RCU script to load db schema
291297
DBUtils.runRCU(rcuPodName, domain1Map);

0 commit comments

Comments
 (0)