Skip to content

Commit c49a067

Browse files
committed
Merge branch 'exclude-db-op' into 'release/4.2'
exclude db operator install in ocne and okd See merge request weblogic-cloud/weblogic-kubernetes-operator!4724
2 parents a011aad + 1e829bd commit c49a067

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

integration-tests/src/test/java/oracle/weblogic/kubernetes/extensions/InitializationTasks.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,9 @@ public void beforeAll(ExtensionContext context) {
311311
installTraefikLB();
312312
}
313313
//install Oracle Database operator as a one time task
314-
installOracleDBOperator();
314+
if (!OCNE && !OKD) {
315+
installOracleDBOperator();
316+
}
315317

316318
// set initialization success to true, not counting the istio installation as not all tests use istio
317319
isInitializationSuccessful = true;

0 commit comments

Comments
 (0)