Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netgoal: start with at least 20GB RootStorage #4779

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion netdeploy/remote/deployedNetwork.go
Expand Up @@ -1047,7 +1047,7 @@ func extractPublicPort(address string) (port int, err error) {
func computeRootStorage(nodeCount, relayCount int) int {
// For now, we'll just use root storage -- assume short-lived instances
// 10 per node should be good for a week (add relayCount * 0 so param is used)
minGB := 10 + nodeCount*10 + (relayCount * 50)
minGB := 20 + (nodeCount * 10) + (relayCount * 50)
return minGB
}

Expand Down