Skip to content

Commit 197af1d

Browse files
committed
fix
1 parent 6adfc78 commit 197af1d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/ITMultipleClusters.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ public void testCreateDomainTwoClusterWDTInImage() throws Exception {
188188
try {
189189
Map<String, Object> domainMap = TestUtils.loadYaml(DOMAININIMAGE_WDT_YAML);
190190
domainMap.put("domainUID", DOMAINUID);
191+
// domainMap.put("initialManagedServerReplicas", 4);
191192
if ((System.getenv("LB_TYPE") != null && System.getenv("LB_TYPE").equalsIgnoreCase("VOYAGER"))
192193
|| (domainMap.containsKey("loadBalancer")
193194
&& ((String) domainMap.get("loadBalancer")).equalsIgnoreCase("VOYAGER"))) {

integration-tests/src/test/resources/multipleclusters/wdtmultipledynclusters.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ topology:
99
'@@PROP:CLUSTER_NAME@@':
1010
DynamicServers:
1111
CalculatedListenPorts: false
12-
DynamicClusterSize: '@@PROP:CONFIGURED_MANAGED_SERVER_COUNT@@'
12+
DynamicClusterSize: 2
1313
MaxDynamicClusterSize: '@@PROP:CONFIGURED_MANAGED_SERVER_COUNT@@'
1414
ServerNamePrefix: '@@PROP:MANAGED_SERVER_NAME_BASE@@'
1515
ServerTemplate: '@@PROP:CLUSTER_NAME@@-template'
1616
'@@PROP:CLUSTER_NAME@@-2':
1717
DynamicServers:
1818
CalculatedListenPorts: false
19-
DynamicClusterSize: '@@PROP:CONFIGURED_MANAGED_SERVER_COUNT@@'
19+
DynamicClusterSize: 2
2020
MaxDynamicClusterSize: '@@PROP:CONFIGURED_MANAGED_SERVER_COUNT@@'
2121
ServerNamePrefix: '@@PROP:MANAGED_SERVER_NAME_BASE@@'
22-
ServerTemplate: '@@PROP:CLUSTER_NAME@@-template2'
22+
ServerTemplate: '@@PROP:CLUSTER_NAME@@-2-template'
2323
Server:
2424
'@@PROP:ADMIN_NAME@@':
2525
ListenPort: '@@PROP:ADMIN_PORT@@'
@@ -34,7 +34,7 @@ topology:
3434
ListenPort: '@@PROP:MANAGED_SERVER_PORT@@'
3535
JTAMigratableTarget:
3636
Cluster: '@@PROP:CLUSTER_NAME@@'
37-
'@@PROP:CLUSTER_NAME@@-template2':
37+
'@@PROP:CLUSTER_NAME@@-2-template':
3838
Cluster: '@@PROP:CLUSTER_NAME@@-2'
3939
ListenPort: '@@PROP:MANAGED_SERVER_PORT@@'
4040
JTAMigratableTarget:

0 commit comments

Comments
 (0)