Skip to content

Commit c486f1a

Browse files
hzhao-githubrjeberhard
authored andcommitted
Failed Istio Intregration tests failing on internal OKE
1 parent 69a7d3c commit c486f1a

File tree

7 files changed

+82
-101
lines changed

7 files changed

+82
-101
lines changed

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIstioCrossDomainTransaction.java

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -363,19 +363,21 @@ private static void buildApplicationsAndDomains() {
363363
istioIngressPort = getIstioHttpIngressPort();
364364
logger.info("Istio Ingress Port is {0}", istioIngressPort);
365365

366-
// In internal OKE env, use Istio EXTERNAL-IP; in non-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
367-
String hostAndPort = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
368-
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace)
369-
: K8S_NODEPORT_HOST + ":" + istioIngressPort;
370-
371366
// We can not verify Rest Management console thru Adminstration NodePort
372367
// in istio, as we can not enable Adminstration NodePort
373368
if (!WEBLOGIC_SLIM) {
374369
String host = K8S_NODEPORT_HOST;
375370
if (host.contains(":")) {
371+
// use IPV6
376372
host = "[" + host + "]";
377373
}
378-
String consoleUrl = "http://" + host + ":" + istioIngressPort + "/console/login/LoginForm.jsp";
374+
375+
// In internal OKE env, use Istio EXTERNAL-IP; in non-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
376+
String hostAndPort = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
377+
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) : host + ":" + istioIngressPort;
378+
379+
String consoleUrl = "http://" + hostAndPort + "/console/login/LoginForm.jsp";
380+
379381
boolean checkConsole =
380382
checkAppUsingHostHeader(consoleUrl, "domain1-" + domain1Namespace + ".org");
381383
assertTrue(checkConsole, "Failed to access WebLogic console on domain1");
@@ -484,22 +486,23 @@ void testIstioCrossDomainTransactionWithFailInjection() {
484486
@Test
485487
@DisplayName("Check cross domain transcated MDB communication with istio")
486488
void testIstioCrossDomainTranscatedMDB() {
489+
String host = K8S_NODEPORT_HOST;
490+
if (host.contains(":")) {
491+
// use IPV6
492+
host = "[" + host + "]";
493+
}
494+
487495
// In internal OKE env, use Istio EXTERNAL-IP;
488496
// in non-internal-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
489497
String hostAndPort = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
490-
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace)
491-
: K8S_NODEPORT_HOST + ":" + istioIngressPort;
498+
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) : host + ":" + istioIngressPort;
492499

493500
assertTrue(checkAppIsActive(hostAndPort, "-H 'host: " + "domain1-" + domain1Namespace + ".org '",
494501
"mdbtopic","cluster-1", ADMIN_USERNAME_DEFAULT,ADMIN_PASSWORD_DEFAULT),
495502
"MDB application can not be activated on domain1/cluster");
496503

497504
logger.info("MDB application is activated on domain1/cluster");
498505

499-
String host = K8S_NODEPORT_HOST;
500-
if (host.contains(":")) {
501-
host = "[" + host + "]";
502-
}
503506
String curlRequest = OKE_CLUSTER
504507
? String.format("curl -g -v --show-error --noproxy '*' "
505508
+ "-H 'host:domain1-" + domain1Namespace + ".org' "
@@ -533,6 +536,7 @@ void testIstioCrossDomainTranscatedMDB() {
533536
private boolean checkLocalQueue() {
534537
String host = K8S_NODEPORT_HOST;
535538
if (host.contains(":")) {
539+
// use IPV6
536540
host = "[" + host + "]";
537541
}
538542
// In internal OKE env, use Istio EXTERNAL-IP;

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIstioDomainInImage.java

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -202,22 +202,22 @@ void testIstioDomainHomeInImage() {
202202
int istioIngressPort = getIstioHttpIngressPort();
203203
logger.info("Istio Ingress Port is {0}", istioIngressPort);
204204

205+
String host = K8S_NODEPORT_HOST;
206+
if (host.contains(":")) {
207+
// use IPV6
208+
host = "[" + host + "]";
209+
}
210+
205211
// In internal OKE env, use Istio EXTERNAL-IP;
206212
// in non-internal-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
207213
String hostAndPort = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
208-
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace)
209-
: K8S_NODEPORT_HOST + ":" + istioIngressPort;
214+
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) : host + ":" + istioIngressPort;
210215

211216
// We can not verify Rest Management console thru Adminstration NodePort
212217
// in istio, as we can not enable Adminstration NodePort
213218
if (!WEBLOGIC_SLIM) {
214-
String host = K8S_NODEPORT_HOST;
215-
if (host.contains(":")) {
216-
host = "[" + host + "]";
217-
}
218-
String consoleUrl = "http://" + host + ":" + istioIngressPort + "/console/login/LoginForm.jsp";
219-
boolean checkConsole =
220-
checkAppUsingHostHeader(consoleUrl, domainNamespace + ".org");
219+
String consoleUrl = "http://" + hostAndPort + "/console/login/LoginForm.jsp";
220+
boolean checkConsole = checkAppUsingHostHeader(consoleUrl, domainNamespace + ".org");
221221
assertTrue(checkConsole, "Failed to access WebLogic console");
222222
logger.info("WebLogic console is accessible");
223223
String localhost = "localhost";
@@ -257,19 +257,14 @@ void testIstioDomainHomeInImage() {
257257
assertEquals("202", result.stdout(), "Deployment didn't return HTTP status code 202");
258258
logger.info("Application {0} deployed successfully at {1}", "testwebapp.war", domainUid + "-" + clusterName);
259259

260-
String host = K8S_NODEPORT_HOST;
261-
if (host.contains(":")) {
262-
host = "[" + host + "]";
263-
}
264-
String url = "http://" + host + ":" + istioIngressPort + "/testwebapp/index.jsp";
265-
266260
if (OKE_CLUSTER) {
267261
testUntil(isAppInServerPodReady(domainNamespace,
268262
managedServerPrefix + 1, 8001, "/testwebapp/index.jsp", "testwebapp"),
269263
logger, "Check Deployed App {0} in server {1}",
270264
archivePath,
271265
target);
272266
} else {
267+
String url = "http://" + hostAndPort + "/testwebapp/index.jsp";
273268
logger.info("Application Access URL {0}", url);
274269
boolean checkApp = checkAppUsingHostHeader(url, domainNamespace + ".org");
275270
assertTrue(checkApp, "Failed to access WebLogic application");
@@ -285,7 +280,7 @@ void testIstioDomainHomeInImage() {
285280
String curlCmd2 = "curl -g -j -sk --show-error --noproxy '*' "
286281
+ " -H 'Host: " + domainNamespace + ".org'"
287282
+ " --user " + ADMIN_USERNAME_DEFAULT + ":" + ADMIN_PASSWORD_DEFAULT
288-
+ " --url http://" + host + ":" + istioIngressPort
283+
+ " --url http://" + hostAndPort
289284
+ "/management/weblogic/latest/domainRuntime/domainSecurityRuntime?"
290285
+ "link=none";
291286

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIstioDomainInPV.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ void testIstioDomainHomeInPv() {
179179
final int replicaCount = 2;
180180
final int t3ChannelPort = getNextFreePort();
181181

182-
// In internal OKE env, use Istio EXTERNAL-IP;
183-
// in non-internal-OKE env, use K8S_NODEPORT_HOST
182+
// In internal OKE env, use Istio EXTERNAL-IP; in non-internal-OKE env, use K8S_NODEPORT_HOST
184183
String hostName = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
185184
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) : K8S_NODEPORT_HOST;
186185

@@ -321,20 +320,21 @@ void testIstioDomainHomeInPv() {
321320
int istioIngressPort = getIstioHttpIngressPort();
322321
logger.info("Istio http ingress Port is {0}", istioIngressPort);
323322

324-
// In internal OKE env, use Istio EXTERNAL-IP;
325-
// in non-internal-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
326-
String hostAndPort = hostName.equals(K8S_NODEPORT_HOST) ? K8S_NODEPORT_HOST + ":" + istioIngressPort : hostName;
327323
String host = K8S_NODEPORT_HOST;
328324
if (host.contains(":")) {
325+
// use IPV6
329326
host = "[" + host + "]";
330327
}
331328

329+
// In internal OKE env, use Istio EXTERNAL-IP;
330+
// in non-internal-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
331+
String hostAndPort = hostName.contains(K8S_NODEPORT_HOST) ? host + ":" + istioIngressPort : hostName;
332+
332333
// We can not verify Rest Management console thru Adminstration NodePort
333334
// in istio, as we can not enable Adminstration NodePort
334-
if (!WEBLOGIC_SLIM) {
335-
String consoleUrl = "http://" + host + ":" + istioIngressPort + "/console/login/LoginForm.jsp";
336-
boolean checkConsole =
337-
checkAppUsingHostHeader(consoleUrl, domainNamespace + ".org");
335+
if (!WEBLOGIC_SLIM) {
336+
String consoleUrl = "http://" + hostAndPort + "/console/login/LoginForm.jsp";
337+
boolean checkConsole = checkAppUsingHostHeader(consoleUrl, domainNamespace + ".org");
338338
assertTrue(checkConsole, "Failed to access WebLogic console");
339339
logger.info("WebLogic console is accessible");
340340
String localhost = "localhost";
@@ -381,10 +381,9 @@ void testIstioDomainHomeInPv() {
381381
String managedServerPrefix = domainUid + "-managed-";
382382
String target = "{identity: [clusters,'" + clusterName + "']}";
383383

384-
String url = "http://" + host + ":" + istioIngressPort + "/testwebapp/index.jsp";
385-
logger.info("Application Access URL {0}", url);
386-
result = deployUsingRest(host, ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
384+
result = deployUsingRest(hostAndPort, ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
387385
target, archivePath, domainNamespace + ".org", "testwebapp");
386+
388387
assertNotNull(result, "Application deployment failed");
389388
logger.info("Application deployment returned {0}", result.toString());
390389
assertEquals("202", result.stdout(), "Application deployment failed with wrong HTTP code");
@@ -397,11 +396,12 @@ void testIstioDomainHomeInPv() {
397396
target);
398397
} else {
399398
for (int i = 1; i <= 10; i++) {
400-
result = deployToClusterUsingRest(host, String.valueOf(istioIngressPort),
399+
result = deployToClusterUsingRest(K8S_NODEPORT_HOST, String.valueOf(istioIngressPort),
401400
ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
402401
clusterName, archivePath, domainNamespace + ".org", "testwebapp");
403402
assertNotNull(result, "Application deployment failed");
404403
logger.info("(Loop:{0}) Application deployment returned {1}", i, result.toString());
404+
405405
if (result.stdout().equals("202")) {
406406
break;
407407
}

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIstioManagedCoherence.java

Lines changed: 10 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,15 @@ public static void init(@Namespaces(4) List<String> namespaces) {
169169
int istioIngressPort = getIstioHttpIngressPort();
170170
logger.info("Istio Ingress Port is {0}", istioIngressPort);
171171

172+
String host = K8S_NODEPORT_HOST;
173+
if (host.contains(":")) {
174+
// use IPV6
175+
host = "[" + host + "]";
176+
}
177+
172178
// In internal OKE env, use Istio EXTERNAL-IP; in non-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
173179
hostAndPort = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
174-
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace)
175-
: K8S_NODEPORT_HOST + ":" + istioIngressPort;
180+
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) : host + ":" + istioIngressPort;
176181
}
177182

178183
/**
@@ -214,12 +219,7 @@ void testIstioMultiClusterCoherenceDomainInImageDomain() {
214219
logger.info("Istio Ingress Port is {0}", istioIngressPort);
215220

216221
// Make sure ready app is accessible thru Istio Ingress Port
217-
218-
String host = K8S_NODEPORT_HOST;
219-
if (host.contains(":")) {
220-
host = "[" + host + "]";
221-
}
222-
String curlCmd = "curl -g --silent --show-error --noproxy '*' http://" + host + ":" + istioIngressPort
222+
String curlCmd = "curl -g --silent --show-error --noproxy '*' http://" + hostAndPort
223223
+ "/weblogic/ready --write-out %{http_code} -o /dev/null";
224224
logger.info("Executing curl command {0}", curlCmd);
225225
assertTrue(callWebAppAndWaitTillReady(curlCmd, 60));
@@ -267,12 +267,7 @@ void testIstioMultiClusterCoherenceMiiDomain() {
267267
logger.info("Istio Ingress Port is {0}", istioIngressPort);
268268

269269
// Make sure ready app is accessible thru Istio Ingress Port
270-
271-
String host = K8S_NODEPORT_HOST;
272-
if (host.contains(":")) {
273-
host = "[" + host + "]";
274-
}
275-
String curlCmd = "curl -g --silent --show-error --noproxy '*' http://" + host + ":" + istioIngressPort
270+
String curlCmd = "curl -g --silent --show-error --noproxy '*' http://" + hostAndPort
276271
+ "/weblogic/ready --write-out %{http_code} -o /dev/null";
277272
logger.info("Executing curl command {0}", curlCmd);
278273
assertTrue(callWebAppAndWaitTillReady(curlCmd, 60));
@@ -376,12 +371,7 @@ void testIstioMultiClusterCoherenceMultiMiiDomain() {
376371
logger.info("Istio Ingress Port is {0}", istioIngressPort);
377372

378373
// Make sure ready app is accessible thru Istio Ingress Port
379-
380-
String host = K8S_NODEPORT_HOST;
381-
if (host.contains(":")) {
382-
host = "[" + host + "]";
383-
}
384-
String curlCmd = "curl -g --silent --show-error --noproxy '*' http://" + host + ":" + istioIngressPort
374+
String curlCmd = "curl -g --silent --show-error --noproxy '*' http://" + hostAndPort
385375
+ "/weblogic/ready --write-out %{http_code} -o /dev/null";
386376
logger.info("Executing curl command {0}", curlCmd);
387377
assertTrue(callWebAppAndWaitTillReady(curlCmd, 60));
@@ -507,14 +497,6 @@ private static void createDomainCrAndVerify(String adminSecretName, String domIm
507497
}
508498

509499
private boolean coherenceCacheTest(int ingressServiceNodePort) {
510-
511-
String host = K8S_NODEPORT_HOST;
512-
if (host.contains(":")) {
513-
host = "[" + host + "]";
514-
}
515-
String hostAndPort = host + ":" + ingressServiceNodePort;
516-
logger.info("hostAndPort = {0} ", hostAndPort);
517-
518500
// add the data to cache
519501
String[] firstNameList = {"Frodo", "Samwise", "Bilbo", "peregrin", "Meriadoc", "Gandalf"};
520502
String[] secondNameList = {"Baggins", "Gamgee", "Baggins", "Took", "Brandybuck", "TheGrey"};

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIstioMiiDomain.java

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,15 @@ void testIstioModelInImageDomain() {
254254
int istioIngressPort = getIstioHttpIngressPort();
255255
logger.info("Istio Ingress Port is {0}", istioIngressPort);
256256

257+
String host = K8S_NODEPORT_HOST;
258+
if (host.contains(":")) {
259+
// use IPV6
260+
host = "[" + host + "]";
261+
}
262+
257263
// In internal OKE env, use Istio EXTERNAL-IP; in non-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
258264
String hostAndPort = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
259-
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace)
260-
: K8S_NODEPORT_HOST + ":" + istioIngressPort;
265+
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) : host + ":" + istioIngressPort;
261266
logger.info("hostAndPort is {0}", hostAndPort);
262267

263268
// We can not verify Rest Management console thru Adminstration NodePort
@@ -273,14 +278,10 @@ void testIstioModelInImageDomain() {
273278
}
274279

275280
if (isWebLogicPsuPatchApplied()) {
276-
String host = K8S_NODEPORT_HOST;
277-
if (host.contains(":")) {
278-
host = "[" + host + "]";
279-
}
280281
String curlCmd2 = "curl -g -j -sk --show-error --noproxy '*' "
281282
+ " -H 'Host: " + domainNamespace + ".org'"
282283
+ " --user " + ADMIN_USERNAME_DEFAULT + ":" + ADMIN_PASSWORD_DEFAULT
283-
+ " --url http://" + host + ":" + istioIngressPort
284+
+ " --url http://" + hostAndPort
284285
+ "/management/weblogic/latest/domainRuntime/domainSecurityRuntime?"
285286
+ "link=none";
286287

@@ -320,11 +321,6 @@ void testIstioModelInImageDomain() {
320321
assertEquals("202", result.stdout(), "Deployment didn't return HTTP status code 202");
321322
logger.info("Application {0} deployed successfully at {1}", "testwebapp.war", domainUid + "-" + clusterName);
322323

323-
324-
String host = K8S_NODEPORT_HOST;
325-
if (host.contains(":")) {
326-
host = "[" + host + "]";
327-
}
328324
if (OKE_CLUSTER) {
329325
testUntil(isAppInServerPodReady(domainNamespace,
330326
managedServerPrefix + 1, 8001, "/testwebapp/index.jsp", "testwebapp"),
@@ -358,12 +354,11 @@ void testIstioModelInImageDomain() {
358354

359355
verifyIntrospectorRuns(domainUid, domainNamespace);
360356

361-
362-
String wmRuntimeUrl = "http://" + host + ":"
363-
+ istioIngressPort + "/management/weblogic/latest/domainRuntime"
364-
+ "/serverRuntimes/managed-server1/applicationRuntimes"
365-
+ "/testwebapp/workManagerRuntimes/newWM/"
366-
+ "maxThreadsConstraintRuntime ";
357+
String resourcePath = "/management/weblogic/latest/domainRuntime"
358+
+ "/serverRuntimes/managed-server1/applicationRuntimes"
359+
+ "/testwebapp/workManagerRuntimes/newWM/"
360+
+ "maxThreadsConstraintRuntime ";
361+
String wmRuntimeUrl = "http://" + hostAndPort + resourcePath;
367362

368363
boolean checkWm = checkAppUsingHostHeader(wmRuntimeUrl, domainNamespace + ".org");
369364
assertTrue(checkWm, "Failed to access WorkManagerRuntime");

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIstioTwoDomainsInImage.java

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -273,18 +273,18 @@ void testIstioTwoDomainsWithSingleIngress() {
273273

274274
String host = K8S_NODEPORT_HOST;
275275
if (host.contains(":")) {
276+
// use IPV6
276277
host = "[" + host + "]";
277278
}
278279
// In internal OKE env, use Istio EXTERNAL-IP; in non-OKE env, use K8S_NODEPORT_HOST + ":" + istioIngressPort
279280
String hostAndPort = getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) != null
280-
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace)
281-
: host + ":" + istioIngressPort;
281+
? getServiceExtIPAddrtOke(istioIngressServiceName, istioNamespace) : host + ":" + istioIngressPort;
282282

283283
// We can not verify Rest Management console thru Adminstration NodePort
284284
// in istio, as we can not enable Adminstration NodePort
285285

286286
if (!WEBLOGIC_SLIM) {
287-
String consoleUrl = "http://" + host + ":" + istioIngressPort + "/console/login/LoginForm.jsp";
287+
String consoleUrl = "http://" + hostAndPort + "/console/login/LoginForm.jsp";
288288
boolean checkConsole = checkAppUsingHostHeader(consoleUrl, domainNamespace1 + ".org");
289289
assertTrue(checkConsole, "Failed to access WebLogic console on domain1");
290290
logger.info("WebLogic console on domain1 is accessible");
@@ -300,9 +300,9 @@ void testIstioTwoDomainsWithSingleIngress() {
300300
createBaseRepoSecret(domainNamespace1);
301301

302302
ExecResult result = OKE_CLUSTER
303-
? deployUsingRest(host, ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
303+
? deployUsingRest(hostAndPort, ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
304304
target, archivePath, domainNamespace1 + ".org", "testwebapp")
305-
: deployToClusterUsingRest(host, String.valueOf(istioIngressPort),
305+
: deployToClusterUsingRest(K8S_NODEPORT_HOST, String.valueOf(istioIngressPort),
306306
ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
307307
clusterName, archivePath, domainNamespace1 + ".org", "testwebapp");
308308

@@ -329,9 +329,8 @@ void testIstioTwoDomainsWithSingleIngress() {
329329
// We can not verify Rest Management console thru Adminstration NodePort
330330
// in istio, as we can not enable Adminstration NodePort
331331
if (!WEBLOGIC_SLIM) {
332-
String consoleUrl = "http://" + host + ":" + istioIngressPort + "/console/login/LoginForm.jsp";
333-
boolean checkConsole
334-
= checkAppUsingHostHeader(consoleUrl, domainNamespace2 + ".org");
332+
String consoleUrl = "http://" + hostAndPort + "/console/login/LoginForm.jsp";
333+
boolean checkConsole = checkAppUsingHostHeader(consoleUrl, domainNamespace2 + ".org");
335334
assertTrue(checkConsole, "Failed to access domain2 WebLogic console");
336335
logger.info("WebLogic console on domain2 is accessible");
337336
} else {
@@ -344,7 +343,7 @@ void testIstioTwoDomainsWithSingleIngress() {
344343
result = OKE_CLUSTER
345344
? deployUsingRest(hostAndPort, ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
346345
target, archivePath, domainNamespace2 + ".org", "testwebapp")
347-
: deployToClusterUsingRest(host, String.valueOf(istioIngressPort),
346+
: deployToClusterUsingRest(K8S_NODEPORT_HOST, String.valueOf(istioIngressPort),
348347
ADMIN_USERNAME_DEFAULT, ADMIN_PASSWORD_DEFAULT,
349348
clusterName, archivePath, domainNamespace2 + ".org", "testwebapp");
350349

0 commit comments

Comments
 (0)