mirror of https://github.com/minio/minio.git
Support 1GB disk size (#6137)
Pivotal CF by default has 1GB disk option which causes minio to not start
This commit is contained in:
parent
b181a693fb
commit
40ed0d1f5d
|
@ -38,8 +38,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
diskMinFreeSpace = 1 * humanize.GiByte // Min 1GiB free space.
|
diskMinFreeSpace = 900 * humanize.MiByte // Min 900MiB free space.
|
||||||
diskMinTotalSpace = diskMinFreeSpace // Min 1GiB total space.
|
diskMinTotalSpace = diskMinFreeSpace // Min 900MiB total space.
|
||||||
maxAllowedIOError = 5
|
maxAllowedIOError = 5
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue