@@ -26,7 +26,7 @@ public class SitConfig extends BaseTest {
26
26
27
27
private static final String DOMAINUID = "customsitconfigdomain" ;
28
28
private static final String ADMINPORT = "30710" ;
29
- private static final int T3CHANNELPORT = 30091 ;
29
+ private static final int T3CHANNELPORT = 7001 ;
30
30
private static final String MYSQL_DB_PORT = "31306" ;
31
31
private static String TEST_RES_DIR ;
32
32
private static String ADMINPODNAME ;
@@ -77,7 +77,8 @@ protected static void staticPrepare(String domainInputYaml, String domainScript)
77
77
ExecResult result = TestUtils .exec ("kubectl create -f " + mysqlYamlFile );
78
78
Assert .assertEquals (0 , result .exitValue ());
79
79
80
- fqdn = TestUtils .getHostName ();
80
+ // fqdn = TestUtils.getHostName();
81
+
81
82
JDBC_URL = "jdbc:mysql://" + fqdn + ":" + MYSQL_DB_PORT + "/" ;
82
83
// copy the configuration override files to replacing the JDBC_URL token
83
84
String [] files = {
@@ -98,6 +99,7 @@ protected static void staticPrepare(String domainInputYaml, String domainScript)
98
99
+ "/domain.yaml" ;
99
100
// copy the jmx test client file the administratioin server weblogic server pod
100
101
ADMINPODNAME = domain .getDomainUid () + "-" + domain .getAdminServerName ();
102
+ fqdn = domain .getDomainNs () + "-" + ADMINPODNAME ;
101
103
TestUtils .copyFileViaCat (
102
104
TEST_RES_DIR + "sitconfig/java/SitConfigTests.java" ,
103
105
"SitConfigTests.java" ,
0 commit comments