Skip to content

Commit 1b04c52

Browse files
revert the changeof ITOperator class
1 parent 0a41369 commit 1b04c52

File tree

1 file changed

+0
-33
lines changed

1 file changed

+0
-33
lines changed

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

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -491,39 +491,6 @@ public void testOperatorRESTUsingCertificateChain() throws Exception {
491491
logger.info("SUCCESS - testOperatorRESTUsingCertificateChain");
492492
}
493493

494-
/**
495-
* Create operator and create domain with TRAEFIK Ingress-per-domain load balancer and verify
496-
* domain is started. Verify web app load balancing by accessing the webapp using
497-
* loadBalancerWebPort. Shutdwn domain by deleting domain CRD using yaml
498-
*
499-
* @throws Exception
500-
*/
501-
@Test
502-
public void testTraefikIngressPerDomainInDefaultNS() throws Exception {
503-
Assume.assumeFalse(QUICKTEST);
504-
505-
logTestBegin("testTraefikIngressPerDomainInDefaultNS");
506-
logger.info("Creating Domain domainTraefikIngress & verifing the domain creation");
507-
Domain domainTraefikIngress = null;
508-
boolean testCompletedSuccessfully = false;
509-
if (operator1 == null) {
510-
operator1 = TestUtils.createOperator(op1YamlFile);
511-
}
512-
try {
513-
// create domainTraefikIngress
514-
domainTraefikIngress = testDomainCreation(domainTraefikIngressYamlFile);
515-
domainTraefikIngress.verifyDomainCreated();
516-
testBasicUseCases(domainTraefikIngress);
517-
testCompletedSuccessfully = true;
518-
} finally {
519-
if (domainTraefikIngress != null && (JENKINS || testCompletedSuccessfully)) {
520-
logger.info("Destroy domainTraefikIngress");
521-
domainTraefikIngress.destroy();
522-
}
523-
}
524-
logger.info("SUCCESS - testTraefikIngressPerDomainInDefaultNS");
525-
}
526-
527494
private Domain testAdvancedUseCasesForADomain(Operator operator, Domain domain) throws Exception {
528495
if (!SMOKETEST) {
529496
testClusterScaling(operator, domain);

0 commit comments

Comments
 (0)