Skip to content

Commit c91e16a

Browse files
committed
add migration support to the party allocator
[static] Signed-off-by: Nicu Reut <nicu.reut@digitalasset.com>
1 parent 307f0ff commit c91e16a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cluster/expected/validator-runbook/expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@
566566
"imageRepo": "us-central1-docker.pkg.dev/da-cn-shared/ghcr/digital-asset/decentralized-canton-sync-dev/docker",
567567
"pvc": {
568568
"name": "party-allocator-keys",
569-
"size": 100,
569+
"size": "100Gi",
570570
"storageClassName": "standard-rwo"
571571
},
572572
"tolerations": [

cluster/pulumi/common-validator/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const PartyAllocatorConfigSchema = z.object({
111111
maxParties: z.number().default(1000000),
112112
preapprovalRetries: z.number().default(120),
113113
preapprovalRetryDelayMs: z.number().default(1000),
114-
pvcSize: z.number().default(100),
114+
pvcSize: z.string().default('100Gi'),
115115
});
116116
export type PartyAllocatorConfig = z.infer<typeof PartyAllocatorConfigSchema>;
117117

0 commit comments

Comments
 (0)