Skip to content
Snippets Groups Projects
Commit 09ab9fb2 authored by Klaus Aehlig's avatar Klaus Aehlig
Browse files

Utility function to set the master node in a node list


The information about which node is the master node is a cluster-wide
setting, in most formats provided independently of the node information.
Most backends therefore have to set the isMaster bit indepently in the
obtained node list. This patch provides a utility function for this.

Signed-off-by: default avatarKlaus Aehlig <aehlig@google.com>
Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
parent 5b658b83
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@ module Ganeti.HTools.Loader
( mergeData
, checkData
, assignIndices
, setMaster
, lookupNode
, lookupInstance
, lookupGroup
......@@ -127,6 +128,14 @@ assignIndices name_element =
. zip [0..] $ name_element
in (M.fromList name_idx, Container.fromList idx_element)
-- | Given am indexed node list, and the name of the master, mark it as such.
setMaster :: (Monad m) => NameAssoc -> Node.List -> String -> m Node.List
setMaster node_names node_idx master = do
kmaster <- maybe (fail $ "Master node " ++ master ++ " unknown") return $
M.lookup master node_names
let mnode = Container.find kmaster node_idx
return $ Container.add kmaster (Node.setMaster mnode True) node_idx
-- | For each instance, add its index to its primary and secondary nodes.
fixNodes :: Node.List
-> Instance.Instance
......
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