We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd36d4 commit e18494cCopy full SHA for e18494c
integration-tests/src/test/java/oracle/kubernetes/operator/ITMultipleClusters.java
@@ -93,8 +93,9 @@ public void testCreateDomainTwoConfiguredCluster() throws Exception {
93
"createDomainPyScript",
94
"integration-tests/src/test/resources/domain-home-on-pv/"
95
+ TWO_CONFIGURED_CLUSTER_SCRIPT);
96
- if (System.getenv("LB_TYPE") != null
97
- && System.getenv("LB_TYPE").equalsIgnoreCase("VOYAGER")) {
+ if ((System.getenv("LB_TYPE") != null && System.getenv("LB_TYPE").equalsIgnoreCase("VOYAGER"))
+ || (domainMap.containsKey("LB_TYPE")
98
+ && ((String) domainMap.get("LB_TYPE")).equalsIgnoreCase("VOYAGER"))) {
99
domainMap.put("voyagerWebPort", new Integer("30366"));
100
}
101
addCluster2ToDomainTemplate();
0 commit comments