Skip to content
Snippets Groups Projects
Commit 80dd50bf authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

gnt-node: Use new opcode to evacuate nodes


Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 7ffc5a86
No related branches found
No related tags found
No related merge requests found
......@@ -224,17 +224,9 @@ def EvacuateNode(opts, args):
src_node, txt_msg)):
return constants.EXIT_CONFIRMATION
ops = []
for iname in sinst:
op = opcodes.OpReplaceDisks(instance_name=iname,
remote_node=dst_node,
mode=constants.REPLACE_DISK_CHG,
iallocator=iallocator,
disks=[])
ops.append(op)
job_id = cli.SendJob(ops, cl=cl)
cli.PollJob(job_id, cl=cl)
op = opcodes.OpEvacuateNode(node_name=args[0], remote_node=dst_node,
iallocator=iallocator)
SubmitOpCode(op, cl=cl)
def FailoverNode(opts, args):
......
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