We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a05409a commit 55933e5Copy full SHA for 55933e5
pkg/gce-pd-csi-driver/controller.go
@@ -46,8 +46,8 @@ var _ csi.ControllerServer = &GCEControllerServer{}
46
const (
47
// MaxVolumeSizeInBytes is the maximum standard and ssd size of 64TB
48
MaxVolumeSizeInBytes int64 = 64 * 1024 * 1024 * 1024 * 1024
49
- MinimumVolumeSizeInBytes int64 = 5 * 1024 * 1024 * 1024
50
- MinimumDiskSizeInGb = 5
+ MinimumVolumeSizeInBytes int64 = 1 * 1024 * 1024 * 1024
+ MinimumDiskSizeInGb = 1
51
52
DiskTypeSSD = "pd-ssd"
53
DiskTypeStandard = "pd-standard"
0 commit comments