diff --git a/cluster-autoscaler/cloudprovider/gridscale/gridscale_node_group.go b/cluster-autoscaler/cloudprovider/gridscale/gridscale_node_group.go index 5642bba484d8..e1482158f261 100644 --- a/cluster-autoscaler/cloudprovider/gridscale/gridscale_node_group.go +++ b/cluster-autoscaler/cloudprovider/gridscale/gridscale_node_group.go @@ -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