@@ -491,39 +491,6 @@ public void testOperatorRESTUsingCertificateChain() throws Exception {
491
491
logger .info ("SUCCESS - testOperatorRESTUsingCertificateChain" );
492
492
}
493
493
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
-
527
494
private Domain testAdvancedUseCasesForADomain (Operator operator , Domain domain ) throws Exception {
528
495
if (!SMOKETEST ) {
529
496
testClusterScaling (operator , domain );
0 commit comments