Skip to content

Commit

Permalink
[controller] Fix max volumes per node
Browse files Browse the repository at this point in the history
Signed-off-by: Viktor Kramarenko <viktor.kramarenko@flant.com>
  • Loading branch information
ViktorKram committed Mar 14, 2024
1 parent 36741ef commit ee980aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/sds-local-volume-csi/driver/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ func (d *Driver) NodeGetInfo(ctx context.Context, request *csi.NodeGetInfoReques
d.log.Info("hostID = ", d.hostID)

return &csi.NodeGetInfoResponse{
NodeId: d.hostID,
MaxVolumesPerNode: 10,
NodeId: d.hostID,
//MaxVolumesPerNode: 10,
AccessibleTopology: &csi.Topology{
Segments: map[string]string{
internal.TopologyKey: d.hostID,
Expand Down

0 comments on commit ee980aa

Please sign in to comment.