Skip to content

Commit 06f3865

Browse files
authored
remove excessive cometbft port being exposed (#1831)
Signed-off-by: Itai Segall <itai.segall@digitalasset.com>
1 parent 6da48e8 commit 06f3865

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cluster/pulumi/infra/src/istio.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ function configureCometBFTGatewayService(
216216
) {
217217
const externalIPRanges = loadIPRanges(true);
218218
const numMigrations = DecentralizedSynchronizerUpgradeConfig.highestMigrationId + 1;
219-
// For DevNet-like clusters, we always assume at least 5 SVs to reduce churn on the gateway definition,
219+
// For DevNet-like clusters, we always assume at least 4 SVs to reduce churn on the gateway definition,
220220
// and support easily deploying without refreshing the infra stack.
221-
const numSVs = dsoSize < 5 && isDevNet ? 5 : dsoSize;
221+
const numSVs = dsoSize < 4 && isDevNet ? 4 : dsoSize;
222222

223223
const cometBftIngressPorts = Array.from({ length: numMigrations }, (_, i) => i).flatMap(
224224
migration => {

0 commit comments

Comments
 (0)