Skip to content
Snippets Groups Projects
Commit 12b0511d authored by Iustin Pop's avatar Iustin Pop
Browse files

Add a tryEvac function


This will be used by the node evacuate IAllocator request type.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
parent 1fe81531
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,7 @@ module Ganeti.HTools.Cluster
-- * IAllocator functions
, tryAlloc
, tryReloc
, tryEvac
, collapseFailures
) where
......@@ -567,6 +568,27 @@ tryReloc _ _ _ reqn _ = fail $ "Unsupported number of relocation \
\destinations required (" ++ show reqn ++
"), only one supported"
-- | Try to allocate an instance on the cluster.
tryEvac :: (Monad m) =>
Node.List -- ^ The node list
-> Instance.List -- ^ The instance list
-> [Ndx] -- ^ Nodes to be evacuated
-> m AllocSolution -- ^ Solution list
tryEvac nl il ex_ndx =
let ex_nodes = map (flip Container.find nl) ex_ndx
all_insts = nub . concat . map Node.sList $ ex_nodes
in do
(_, sol) <- foldM (\(nl', (_, _, rsols)) idx -> do
-- FIXME: hardcoded one node here
(fm, cs, aes) <- tryReloc nl' il idx 1 ex_ndx
case aes of
csol@(_, (nl'', _, _)):_ ->
return (nl'', (fm, cs, csol:rsols))
_ -> fail $ "Can't evacuate instance " ++
show idx
) (nl, ([], 0, [])) all_insts
return sol
-- * Formatting functions
-- | Given the original and final nodes, computes the relocation description.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment