X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/f27302fafc3e4d65f7dd44f551ded242629d9ade..140a81611e4d6c7a590d94c184c2fd4c6c0da30d:/lib/opcodes.py diff --git a/lib/opcodes.py b/lib/opcodes.py index 3544ed6..c6cad58 100644 --- a/lib/opcodes.py +++ b/lib/opcodes.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +# # # Copyright (C) 2006, 2007 Google Inc. @@ -83,6 +83,31 @@ class OpRunClusterCommand(OpCode): class OpVerifyCluster(OpCode): """Verify the cluster state.""" OP_ID = "OP_CLUSTER_VERIFY" + __slots__ = ["skip_checks"] + + +class OpVerifyDisks(OpCode): + """Verify the cluster disks. + + Parameters: none + + Result: two lists: + - list of node names with bad data returned (unreachable, etc.) + - dist of node names with broken volume groups (values: error msg) + - list of instances with degraded disks (that should be activated) + - dict of instances with missing logical volumes (values: (node, vol) + pairs with details about the missing volumes) + + In normal operation, all lists should be empty. A non-empty instance + list (3rd element of the result) is still ok (errors were fixed) but + non-empty node list means some node is down, and probably there are + unfixable drbd errors. + + Note that only instances that are drbd-based are taken into + consideration. This might need to be revisited in the future. + + """ + OP_ID = "OP_CLUSTER_VERIFY_DISKS" __slots__ = [] @@ -135,10 +160,14 @@ class OpQueryNodeVolumes(OpCode): class OpCreateInstance(OpCode): """Create an instance.""" OP_ID = "OP_INSTANCE_CREATE" - __slots__ = ["instance_name", "mem_size", "disk_size", "os_type", "pnode", - "disk_template", "snode", "swap_size", "mode", - "vcpus", "ip", "bridge", "src_node", "src_path", "start", - "wait_for_sync", "ip_check"] + __slots__ = [ + "instance_name", "mem_size", "disk_size", "os_type", "pnode", + "disk_template", "snode", "swap_size", "mode", + "vcpus", "ip", "bridge", "src_node", "src_path", "start", + "wait_for_sync", "ip_check", "mac", + "kernel_path", "initrd_path", "hvm_boot_order", + "iallocator", + ] class OpReinstallInstance(OpCode): @@ -150,7 +179,7 @@ class OpReinstallInstance(OpCode): class OpRemoveInstance(OpCode): """Remove an instance.""" OP_ID = "OP_INSTANCE_REMOVE" - __slots__ = ["instance_name"] + __slots__ = ["instance_name", "ignore_failures"] class OpRenameInstance(OpCode): @@ -171,6 +200,13 @@ class OpShutdownInstance(OpCode): __slots__ = ["instance_name"] +class OpRebootInstance(OpCode): + """Reboot an instance.""" + OP_ID = "OP_INSTANCE_REBOOT" + __slots__ = ["instance_name", "reboot_type", "extra_args", + "ignore_secondaries" ] + + class OpAddMDDRBDComponent(OpCode): """Add a MD-DRBD component.""" OP_ID = "OP_INSTANCE_ADD_MDDRBD" @@ -186,7 +222,7 @@ class OpRemoveMDDRBDComponent(OpCode): class OpReplaceDisks(OpCode): """Replace the disks of an instance.""" OP_ID = "OP_INSTANCE_REPLACE_DISKS" - __slots__ = ["instance_name", "remote_node"] + __slots__ = ["instance_name", "remote_node", "mode", "disks"] class OpFailoverInstance(OpCode): @@ -228,7 +264,10 @@ class OpQueryInstanceData(OpCode): class OpSetInstanceParms(OpCode): """Change the parameters of an instance.""" OP_ID = "OP_INSTANCE_SET_PARMS" - __slots__ = ["instance_name", "mem", "vcpus", "ip", "bridge"] + __slots__ = [ + "instance_name", "mem", "vcpus", "ip", "bridge", "mac", + "kernel_path", "initrd_path", "hvm_boot_order", + ] # OS opcodes @@ -248,6 +287,10 @@ class OpExportInstance(OpCode): OP_ID = "OP_BACKUP_EXPORT" __slots__ = ["instance_name", "target_node", "shutdown"] +class OpRemoveExport(OpCode): + """Remove an instance's export.""" + OP_ID = "OP_BACKUP_REMOVE" + __slots__ = ["instance_name"] # Tags opcodes class OpGetTags(OpCode): @@ -256,6 +299,12 @@ class OpGetTags(OpCode): __slots__ = ["kind", "name"] +class OpSearchTags(OpCode): + """Searches the tags in the cluster for a given pattern.""" + OP_ID = "OP_TAGS_SEARCH" + __slots__ = ["pattern"] + + class OpAddTags(OpCode): """Add a list of tags on a given object.""" OP_ID = "OP_TAGS_SET" @@ -266,3 +315,48 @@ class OpDelTags(OpCode): """Remove a list of tags from a given object.""" OP_ID = "OP_TAGS_DEL" __slots__ = ["kind", "name", "tags"] + + +# Test opcodes +class OpTestDelay(OpCode): + """Sleeps for a configured amount of time. + + This is used just for debugging and testing. + + Parameters: + - duration: the time to sleep + - on_master: if true, sleep on the master + - on_nodes: list of nodes in which to sleep + + If the on_master parameter is true, it will execute a sleep on the + master (before any node sleep). + + If the on_nodes list is not empty, it will sleep on those nodes + (after the sleep on the master, if that is enabled). + + As an additional feature, the case of duration < 0 will be reported + as an execution error, so this opcode can be used as a failure + generator. The case of duration == 0 will not be treated specially. + + """ + OP_ID = "OP_TEST_DELAY" + __slots__ = ["duration", "on_master", "on_nodes"] + + +class OpTestAllocator(OpCode): + """Allocator framework testing. + + This opcode has two modes: + - gather and return allocator input for a given mode (allocate new + or replace secondary) and a given instance definition (direction + 'in') + - run a selected allocator for a given operation (as above) and + return the allocator output (direction 'out') + + """ + OP_ID = "OP_TEST_ALLOCATOR" + __slots__ = [ + "direction", "mode", "allocator", "name", + "mem_size", "disks", "disk_template", + "os", "tags", "nics", "vcpus", + ]