Skip to content

Commit

Permalink
LKE-3931: Set maxVolumesPerNode to 7
Browse files Browse the repository at this point in the history
This is a quick fix for the default case when we have 8 slots and one
slot is already taken by boot disk. There may be more slots in use by
non-PVC volumes such as swap but they are not the default in LKE.

Let's not let perfection be the enemy of good.
  • Loading branch information
rsienko committed Jan 9, 2024
1 parent bc685b1 commit 25bda9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/linode-bs/nodeserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
)

const (
maxVolumesPerNode = 8
maxVolumesPerNode = 7
)

type LinodeNodeServer struct {
Expand Down

0 comments on commit 25bda9b

Please sign in to comment.