Skip to content

Commit

Permalink
fix gridscale nodegroup not implement NodeGroup interface
Browse files Browse the repository at this point in the history
  • Loading branch information
nvthongswansea committed Sep 3, 2024
1 parent bc65e21 commit 954941c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ func (n *NodeGroup) IncreaseSize(delta int) error {
return nil
}

// AtomicIncreaseSize is not implemented.
func (n *NodeGroup) AtomicIncreaseSize(delta int) error {
return cloudprovider.ErrNotImplemented
}

// DeleteNodes deletes nodes from this node group (and also increasing the size
// of the node group with that). Error is returned either on failure or if the
// given node doesn't belong to this node group. This function should wait
Expand Down

0 comments on commit 954941c

Please sign in to comment.