Skip to content

Commit 7e8aaca

Browse files
committed
netgoal: start with 20GB RootStorage
1 parent 995ae47 commit 7e8aaca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netdeploy/remote/deployedNetwork.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ func extractPublicPort(address string) (port int, err error) {
10471047
func computeRootStorage(nodeCount, relayCount int) int {
10481048
// For now, we'll just use root storage -- assume short-lived instances
10491049
// 10 per node should be good for a week (add relayCount * 0 so param is used)
1050-
minGB := 10 + nodeCount*10 + (relayCount * 50)
1050+
minGB := 20 + (nodeCount * 10) + (relayCount * 50)
10511051
return minGB
10521052
}
10531053

0 commit comments

Comments
 (0)