Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,12 @@ public void initAll(@Namespaces(2) List<String> namespaces) {


//start two MySQL database instances
createMySQLDB("mysqldb-1", "root", "root123", 0, domainNamespace, null);
createMySQLDB("mysqldb-1", "root", "root123", getNextFreePort(), domainNamespace, null);
mysqlDBPort1 = getMySQLNodePort(domainNamespace, "mysqldb-1");
createMySQLDB("mysqldb-2", "root", "root456", 0, domainNamespace, null);
logger.info("mysqlDBPort1 is: " + mysqlDBPort1);
createMySQLDB("mysqldb-2", "root", "root456", getNextFreePort(), domainNamespace, null);
mysqlDBPort2 = getMySQLNodePort(domainNamespace, "mysqldb-2");
logger.info("mysqlDBPort2 is: " + mysqlDBPort2);

if (OKD) {
mysql1SvcEndpoint = getMySQLSvcEndpoint(domainNamespace, "mysqldb-1");
Expand Down