Introduce OpAddGroup.ndparams and expose in CLI
authorAdeodato Simo <dato@google.com>
Wed, 8 Dec 2010 19:49:24 +0000 (19:49 +0000)
committerAdeodato Simo <dato@google.com>
Mon, 13 Dec 2010 16:32:57 +0000 (16:32 +0000)
Signed-off-by: Adeodato Simo <dato@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>

lib/client/gnt_group.py
lib/cmdlib.py
lib/opcodes.py
man/gnt-group.rst

index 9ddd499..545f0d2 100644 (file)
@@ -54,7 +54,7 @@ def AddGroup(opts, args):
 
   """
   (group_name,) = args
-  op = opcodes.OpAddGroup(group_name=group_name)
+  op = opcodes.OpAddGroup(group_name=group_name, ndparams=opts.ndparams)
   SubmitOpCode(op, opts=opts)
 
 
@@ -137,7 +137,7 @@ def RenameGroup(opts, args):
 
 commands = {
   "add": (
-    AddGroup, ARGS_ONE_GROUP, [DRY_RUN_OPT],
+    AddGroup, ARGS_ONE_GROUP, [DRY_RUN_OPT, NODE_PARAMS_OPT],
     "<group_name>", "Add a new node group to the cluster"),
   "list": (
     ListGroups, ARGS_MANY_GROUPS,
index ec64c29..95ae88c 100644 (file)
@@ -10178,6 +10178,7 @@ class LUAddGroup(LogicalUnit):
 
   _OP_PARAMS = [
     _PGroupName,
+    ("ndparams", None, ht.TOr(ht.TDict, ht.TNone)),
     ]
 
   REQ_BGL = False
@@ -10207,6 +10208,9 @@ class LUAddGroup(LogicalUnit):
                                  (self.op.group_name, existing_uuid),
                                  errors.ECODE_EXISTS)
 
+    if self.op.ndparams:
+      utils.ForceDictType(self.op.ndparams, constants.NDS_PARAMETER_TYPES)
+
   def BuildHooksEnv(self):
     """Build hooks env.
 
@@ -10222,7 +10226,8 @@ class LUAddGroup(LogicalUnit):
 
     """
     group_obj = objects.NodeGroup(name=self.op.group_name, members=[],
-                                  uuid=self.group_uuid)
+                                  uuid=self.group_uuid,
+                                  ndparams=self.op.ndparams)
 
     self.cfg.AddNodeGroup(group_obj, self.proc.GetECId(), check_uuid=False)
     del self.remove_locks[locking.LEVEL_NODEGROUP]
index 6bf14d5..172e451 100644 (file)
@@ -725,7 +725,10 @@ class OpAddGroup(OpCode):
   """Add a node group to the cluster."""
   OP_ID = "OP_GROUP_ADD"
   OP_DSC_FIELD = "group_name"
-  __slots__ = ["group_name"]
+  __slots__ = [
+    "group_name",
+    "ndparams",
+    ]
 
 
 class OpQueryGroups(OpCode):
index e43a8b9..777b0d2 100644 (file)
@@ -23,11 +23,17 @@ COMMANDS
 ADD
 ~~~
 
-| **add** {*group*}
+| **add**
+| [--node-parameters=*NDPARAMS*]
+| {*group*}
 
 Creates a new group with the given name. The node group will be
 initially empty.
 
+The ``--node-parameters`` option allows you to set default node
+parameters for nodes in the group. Please see **ganeti**(7) for more
+information about supported key=value pairs.
+
 REMOVE
 ~~~~~~