PR #59323, fix bug and remove one api call, add node util dependency to cloud controller

This commit is contained in:
Jesse Haka
2018-02-20 19:54:07 +02:00
parent 3856891198
commit de967b717d
22 changed files with 381 additions and 5 deletions

View File

@@ -153,3 +153,8 @@ func (cs *CSCloud) InstanceExistsByProviderID(ctx context.Context, providerID st
return true, nil
}
// InstanceShutdownByProviderID returns true if the instance is in safe state to detach volumes
func (cs *CSCloud) InstanceShutdownByProviderID(ctx context.Context, providerID string) (bool, error) {
return false, cloudprovider.NotImplemented
}