Skip to content

Commit

Permalink
Merge pull request #8 from Sh4d1/fix_size_limit
Browse files Browse the repository at this point in the history
fix: fix the limit of max size to 10TB
  • Loading branch information
Sh4d1 authored Mar 31, 2020
2 parents a5a9c30 + b2b578d commit 43e5d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scaleway/scaleway.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const (
// MinimumVolumeSizeInBytes represents the size of the smallest block volume on Scaleway
MinimumVolumeSizeInBytes int64 = 1 * 1000 * 1000 * 1000
// MaximumVolumeSizeInBytes represents the size of the biggest block volume on Scaleway
MaximumVolumeSizeInBytes int64 = 1 * 1000 * 1000 * 1000 * 1000
MaximumVolumeSizeInBytes int64 = 10 * 1000 * 1000 * 1000 * 1000
// MaxVolumesPerNode represents the number max of volumes attached to one node
MaxVolumesPerNode = 16

Expand Down

0 comments on commit 43e5d4e

Please sign in to comment.