reduce expected disk size for storj-sim and testplanet (#2249)

This commit is contained in:
Egon Elbre 2019-06-19 18:29:45 +03:00 committed by GitHub
parent d5f89afac8
commit 9d670b33b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -427,8 +427,8 @@ func newNetwork(flags *Flags) (*Processes, error) {
"--kademlia.operator.email", fmt.Sprintf("storage%d@mail.test", i),
"--kademlia.operator.wallet", "0x0123456789012345678901234567890123456789",
"--storage2.monitor.minimum-disk-space", "25GB",
"--storage2.monitor.minimum-bandwidth", "25GB",
"--storage2.monitor.minimum-disk-space", "10GB",
"--storage2.monitor.minimum-bandwidth", "10GB",
"--server.extensions.revocation=false",
"--server.use-peer-ca-whitelist=false",

View File

@ -623,7 +623,7 @@ func (planet *Planet) newStorageNodes(count int, whitelistedSatelliteIDs []strin
},
Storage: piecestore.OldConfig{
Path: "", // TODO: this argument won't be needed with master storagenodedb
AllocatedDiskSpace: 1500 * memory.GB,
AllocatedDiskSpace: 1 * memory.GB,
AllocatedBandwidth: memory.TB,
KBucketRefreshInterval: time.Hour,