Statistics
| Branch: | Tag: | Revision:

root / scripts / gnt-backup @ a5728081

History | View | Annotate | Download (8.9 kB)

1
#!/usr/bin/python
2
#
3

    
4
# Copyright (C) 2006, 2007 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
# pylint: disable-msg=W0401,W0614
23
# W0401: Wildcard import ganeti.cli
24
# W0614: Unused import %s from wildcard import (since we need cli)
25

    
26
import sys
27
from optparse import make_option
28

    
29
from ganeti.cli import *
30
from ganeti import opcodes
31
from ganeti import constants
32
from ganeti import errors
33
from ganeti import utils
34

    
35

    
36
_VALUE_TRUE = "true"
37

    
38
def PrintExportList(opts, args):
39
  """Prints a list of all the exported system images.
40

    
41
  @param opts: the command line options selected by the user
42
  @type args: list
43
  @param args: should be an empty list
44
  @rtype: int
45
  @return: the desired exit code
46

    
47
  """
48
  exports = GetClient().QueryExports(opts.nodes, True)
49
  retcode = 0
50
  for node in exports:
51
    ToStdout("Node: %s", node)
52
    ToStdout("Exports:")
53
    if isinstance(exports[node], list):
54
      for instance_name in exports[node]:
55
        ToStdout("\t%s", instance_name)
56
    else:
57
      ToStdout("  Could not get exports list")
58
      retcode = 1
59
  return retcode
60

    
61

    
62
def ExportInstance(opts, args):
63
  """Export an instance to an image in the cluster.
64

    
65
  @param opts: the command line options selected by the user
66
  @type args: list
67
  @param args: should contain only one element, the name
68
      of the instance to be exported
69
  @rtype: int
70
  @return: the desired exit code
71

    
72
  """
73
  op = opcodes.OpExportInstance(instance_name=args[0],
74
                                target_node=opts.node,
75
                                shutdown=opts.shutdown)
76

    
77
  SubmitOpCode(op)
78

    
79

    
80
def ImportInstance(opts, args):
81
  """Add an instance to the cluster.
82

    
83
  @param opts: the command line options selected by the user
84
  @type args: list
85
  @param args: should contain only one element, the new instance name
86
  @rtype: int
87
  @return: the desired exit code
88

    
89
  """
90
  instance = args[0]
91

    
92
  (pnode, snode) = SplitNodeOption(opts.node)
93

    
94
  hypervisor = None
95
  hvparams = {}
96
  if opts.hypervisor:
97
    hypervisor, hvparams = opts.hypervisor
98

    
99
  if opts.nics:
100
    try:
101
      nic_max = max(int(nidx[0])+1 for nidx in opts.nics)
102
    except ValueError, err:
103
      raise errors.OpPrereqError("Invalid NIC index passed: %s" % str(err))
104
    nics = [{}] * nic_max
105
    for nidx, ndict in opts.nics.items():
106
      nidx = int(nidx)
107
      nics[nidx] = ndict
108
  elif opts.no_nics:
109
    # no nics
110
    nics = []
111
  else:
112
    # default of one nic, all auto
113
    nics = [{}]
114

    
115
  if opts.disk_template == constants.DT_DISKLESS:
116
    if opts.disks:
117
      raise errors.OpPrereqError("Diskless instance but disk"
118
                                 " information passed")
119
    disks = []
120
  else:
121
    if not opts.disks:
122
      raise errors.OpPrereqError("No disk information specified")
123
    try:
124
      disk_max = max(int(didx[0])+1 for didx in opts.disks)
125
    except ValueError, err:
126
      raise errors.OpPrereqError("Invalid disk index passed: %s" % str(err))
127
    disks = [{}] * disk_max
128
    for didx, ddict in opts.disks:
129
      didx = int(didx)
130
      if "size" not in ddict:
131
        raise errors.OpPrereqError("Missing size for disk %d" % didx)
132
      try:
133
        ddict["size"] = utils.ParseUnit(ddict["size"])
134
      except ValueError, err:
135
        raise errors.OpPrereqError("Invalid disk size for disk %d: %s" %
136
                                   (didx, err))
137
      disks[didx] = ddict
138

    
139
  utils.ForceDictType(opts.beparams, constants.BES_PARAMETER_TYPES)
140
  utils.ForceDictType(opts.hvparams, constants.HVS_PARAMETER_TYPES)
141

    
142
  op = opcodes.OpCreateInstance(instance_name=instance,
143
                                disk_template=opts.disk_template,
144
                                disks=disks,
145
                                nics=nics,
146
                                mode=constants.INSTANCE_IMPORT,
147
                                pnode=pnode, snode=snode,
148
                                ip_check=opts.ip_check,
149
                                start=False,
150
                                src_node=opts.src_node, src_path=opts.src_dir,
151
                                wait_for_sync=opts.wait_for_sync,
152
                                file_storage_dir=opts.file_storage_dir,
153
                                file_driver=opts.file_driver,
154
                                iallocator=opts.iallocator,
155
                                hypervisor=hypervisor,
156
                                hvparams=hvparams,
157
                                beparams=opts.beparams)
158

    
159
  SubmitOpCode(op)
160
  return 0
161

    
162

    
163
def RemoveExport(opts, args):
164
  """Remove an export from the cluster.
165

    
166
  @param opts: the command line options selected by the user
167
  @type args: list
168
  @param args: should contain only one element, the name of the
169
      instance whose backup should be removed
170
  @rtype: int
171
  @return: the desired exit code
172

    
173
  """
174
  instance = args[0]
175
  op = opcodes.OpRemoveExport(instance_name=args[0])
176

    
177
  SubmitOpCode(op)
178
  return 0
179

    
180

    
181
# this is defined separately due to readability only
182
import_opts = [
183
  DEBUG_OPT,
184
  make_option("-n", "--node", dest="node",
185
              help="Target node and optional secondary node",
186
              metavar="<pnode>[:<snode>]"),
187
  keyval_option("-B", "--backend", dest="beparams",
188
                type="keyval", default={},
189
                help="Backend parameters"),
190
  make_option("-t", "--disk-template", dest="disk_template",
191
              help="Custom disk setup (diskless, file, plain, drbd)",
192
              default=None, metavar="TEMPL"),
193
  ikv_option("--disk", help="Disk information",
194
             default=[], dest="disks",
195
             action="append",
196
             type="identkeyval"),
197
  ikv_option("--net", help="NIC information",
198
             default=[], dest="nics",
199
             action="append",
200
             type="identkeyval"),
201
  make_option("--no-nics", default=False, action="store_true",
202
              help="Do not create any network cards for the instance"),
203
  make_option("--no-wait-for-sync", dest="wait_for_sync", default=True,
204
              action="store_false", help="Don't wait for sync (DANGEROUS!)"),
205
  make_option("--src-node", dest="src_node", help="Source node",
206
              metavar="<node>"),
207
  make_option("--src-dir", dest="src_dir", help="Source directory",
208
              metavar="<dir>"),
209
  make_option("--no-ip-check", dest="ip_check", default=True,
210
              action="store_false", help="Don't check that the instance's IP"
211
              " is alive"),
212
  make_option("-I", "--iallocator", metavar="<NAME>",
213
              help="Select nodes for the instance automatically using the"
214
              " <NAME> iallocator plugin", default=None, type="string"),
215
  make_option("--file-storage-dir", dest="file_storage_dir",
216
              help="Relative path under default cluster-wide file storage dir"
217
              " to store file-based disks", default=None,
218
              metavar="<DIR>"),
219
  make_option("--file-driver", dest="file_driver", help="Driver to use"
220
              " for image files", default="loop", metavar="<DRIVER>"),
221
  ikv_option("-H", "--hypervisor", dest="hypervisor",
222
              help="Hypervisor and hypervisor options, in the format"
223
              " hypervisor:option=value,option=value,...", default=None,
224
              type="identkeyval"),
225
  ]
226

    
227
commands = {
228
  'list': (PrintExportList, ARGS_NONE,
229
           [DEBUG_OPT,
230
            make_option("--node", dest="nodes", default=[], action="append",
231
                        help="List only backups stored on this node"
232
                             " (can be used multiple times)"),
233
            ],
234
           "", "Lists instance exports available in the ganeti cluster"),
235
  'export': (ExportInstance, ARGS_ONE,
236
             [DEBUG_OPT, FORCE_OPT,
237
              make_option("-n", "--node", dest="node", help="Target node",
238
                          metavar="<node>"),
239
              make_option("","--noshutdown", dest="shutdown",
240
                          action="store_false", default=True,
241
                          help="Don't shutdown the instance (unsafe)"), ],
242
             "-n <target_node> [opts...] <name>",
243
             "Exports an instance to an image"),
244
  'import': (ImportInstance, ARGS_ONE, import_opts,
245
             ("[...] -t disk-type -n node[:secondary-node]"
246
              " <name>"),
247
             "Imports an instance from an exported image"),
248
  'remove': (RemoveExport, ARGS_ONE,
249
             [DEBUG_OPT],
250
             "<name>",
251
             "Remove exports of named instance from the filesystem."),
252
  }
253

    
254
if __name__ == '__main__':
255
  sys.exit(GenericMain(commands))