From 40ed0d1f5dc170d1cf9a5d9498742395a2a329df Mon Sep 17 00:00:00 2001 From: Krishna Srinivas <634494+krishnasrinivas@users.noreply.github.com> Date: Mon, 9 Jul 2018 18:23:50 -0700 Subject: [PATCH] Support 1GB disk size (#6137) Pivotal CF by default has 1GB disk option which causes minio to not start --- cmd/posix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/posix.go b/cmd/posix.go index 3336da6cf..a6e429799 100644 --- a/cmd/posix.go +++ b/cmd/posix.go @@ -38,8 +38,8 @@ import ( ) const ( - diskMinFreeSpace = 1 * humanize.GiByte // Min 1GiB free space. - diskMinTotalSpace = diskMinFreeSpace // Min 1GiB total space. + diskMinFreeSpace = 900 * humanize.MiByte // Min 900MiB free space. + diskMinTotalSpace = diskMinFreeSpace // Min 900MiB total space. maxAllowedIOError = 5 )