Merge node groups from other cluster
authorStephen Shirley <diamond@google.com>
Tue, 1 Feb 2011 12:07:31 +0000 (13:07 +0100)
committerRené Nussbaumer <rn@google.com>
Tue, 1 Feb 2011 12:15:05 +0000 (13:15 +0100)
Signed-off-by: Stephen Shirley <diamond@google.com>
Reviewed-by: René Nussbaumer <rn@google.com>

tools/cluster-merge

index 5b6d0b6..412280b 100755 (executable)
@@ -47,6 +47,7 @@ PAUSE_PERIOD_OPT = cli.cli_option("-p", "--watcher-pause-period", default=1800,
                                   dest="pause_period",
                                   help=("Amount of time in seconds watcher"
                                         " should be suspended from running"))
+_CLUSTERMERGE_ECID = "clustermerge-ecid"
 
 
 def Flatten(unflattened_list):
@@ -268,6 +269,7 @@ class Merger(object):
 
     for data in self.merger_data:
       other_config = config.ConfigWriter(data.config_path, accept_foreign=True)
+      self._MergeNodeGroups(my_config, other_config)
 
       for node in other_config.GetNodeList():
         node_info = other_config.GetNodeInfo(node)
@@ -296,6 +298,17 @@ class Merger(object):
         fake_ec_id += 1
 
   # R0201: Method could be a function
+  def _MergeNodeGroups(self, my_config, other_config):
+    """Adds foreign node groups
+
+    ConfigWriter.AddNodeGroup takes care of making sure there are no conflicts.
+    """
+    # pylint: disable-msg=R0201
+    for (_, grp) in other_config.GetAllNodeGroupsInfo():
+      #TODO: handle node group conflicts
+      my_config.AddNodeGroup(grp, _CLUSTERMERGE_ECID)
+
+  # R0201: Method could be a function
   def _StartMasterDaemon(self, no_vote=False): # pylint: disable-msg=R0201
     """Starts the local master daemon.