Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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