@@ -200,11 +200,12 @@ public void testDomainOnPVUsingWDT() throws Exception {
200
200
}
201
201
202
202
/**
203
- * Create two operators if they are not running. Create domain domain4 with dynamic cluster in
204
- * default namespace, managed by operator1. Create domain domain5 with Configured cluster using
205
- * WDT in test2 namespace, managed by operator2 Verify scaling for domain5 cluster from 2 to 3
206
- * servers and back to 2, plus verify no impact on domain4 Cycle domain4 down and back up, plus
207
- * verify no impact on domain5 shutdown by deleting both domain4 and domain5 CRD's
203
+ * Create two operators if they are not running. Create domain domain1 with dynamic cluster in
204
+ * default namespace, managed by operator1. Create domain domain2 with Configured cluster using
205
+ * WDT in test2 namespace, managed by operator2. Verify scaling for domain2 cluster from 2 to 3
206
+ * servers and back to 2, plus verify no impact on domain1. Cycle domain1 down and back up, plus
207
+ * verify no impact on domain2. shutdown by the domains using the delete resource script from
208
+ * samples.
208
209
*
209
210
* <p>ToDo: configured cluster support is removed from samples, modify the test to create
210
211
*
@@ -215,7 +216,7 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
215
216
Assume .assumeFalse (QUICKTEST );
216
217
String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
217
218
logTestBegin (testMethodName );
218
- logger .info ("Creating Domain domain4 & verifing the domain creation" );
219
+ logger .info ("Creating Domain domain1 & verifing the domain creation" );
219
220
220
221
logger .info ("Checking if operator1 and domain1 are running, if not creating" );
221
222
if (operator1 == null ) {
@@ -237,7 +238,7 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
237
238
if (operator2 == null ) {
238
239
operator2 = TestUtils .createOperator (operator2File );
239
240
}
240
- // create domain5 with configured cluster
241
+ // create domain2 with configured cluster
241
242
// ToDo: configured cluster support is removed from samples, modify the test to create
242
243
// configured cluster
243
244
Map <String , Object > wdtDomainMap = TestUtils .loadYaml (domainonpvwdtFile );
@@ -256,7 +257,7 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
256
257
logger .info ("Verify the only remaining running domain domain1 is unaffected" );
257
258
domain1 .verifyDomainCreated ();
258
259
259
- logger .info ("Destroy and create domain4 and verify no impact on domain2" );
260
+ logger .info ("Destroy and create domain1 and verify no impact on domain2" );
260
261
domain1 .destroy ();
261
262
domain1 .create ();
262
263
@@ -299,7 +300,7 @@ public void testCreateDomainWithStartPolicyAdminOnly() throws Exception {
299
300
operator1 = TestUtils .createOperator (operator1File );
300
301
}
301
302
logger .info ("Creating Domain domain6 & verifing the domain creation" );
302
- // create domain6
303
+ // create domain
303
304
Domain domain = null ;
304
305
boolean testCompletedSuccessfully = false ;
305
306
try {
@@ -332,8 +333,8 @@ public void testCreateDomainPVReclaimPolicyRecycle() throws Exception {
332
333
if (operator1 == null ) {
333
334
operator1 = TestUtils .createOperator (operator1File );
334
335
}
335
- logger .info ("Creating Domain domain7 & verifing the domain creation" );
336
- // create domain7
336
+ logger .info ("Creating Domain domain & verifing the domain creation" );
337
+ // create domain
337
338
Domain domain = null ;
338
339
339
340
try {
0 commit comments