Skip to content

Commit

Permalink
fix: fix the limit of max size to 10TB
Browse files Browse the repository at this point in the history
Signed-off-by: Patrik Cyvoct <[email protected]>
  • Loading branch information
Sh4d1 committed Mar 31, 2020
1 parent a5a9c30 commit b2b578d
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 b2b578d

Please sign in to comment.