Statistics
| Branch: | Tag: | Revision:

root / man / gnt-instance.rst @ a53cd1f4

History | View | Annotate | Download (49.5 kB)

1
gnt-instance(8) Ganeti | Version @GANETI_VERSION@
2
=================================================
3

    
4
Name
5
----
6

    
7
gnt-instance - Ganeti instance administration
8

    
9
Synopsis
10
--------
11

    
12
**gnt-instance** {command} [arguments...]
13

    
14
DESCRIPTION
15
-----------
16

    
17
The **gnt-instance** command is used for instance administration in
18
the Ganeti system.
19

    
20
COMMANDS
21
--------
22

    
23
Creation/removal/querying
24
~~~~~~~~~~~~~~~~~~~~~~~~~
25

    
26
ADD
27
^^^
28

    
29
| **add**
30
| {-t {diskless | file \| plain \| drbd}}
31
| {--disk=*N*: {size=*VAL* \| adopt=*LV*}[,vg=*VG*][,mode=*ro\|rw*]
32
|  \| -s *SIZE*}
33
| [--no-ip-check] [--no-name-check] [--no-start] [--no-install]
34
| [--net=*N* [:options...] \| --no-nics]
35
| [-B *BEPARAMS*]
36
| [-H *HYPERVISOR* [: option=*value*... ]]
37
| [-O, --os-parameters *param*=*value*... ]
38
| [--file-storage-dir *dir\_path*] [--file-driver {loop \| blktap}]
39
| {-n *node[:secondary-node]* \| --iallocator *name*}
40
| {-o *os-type*}
41
| [--submit]
42
| {*instance*}
43

    
44
Creates a new instance on the specified host. The *instance* argument
45
must be in DNS, but depending on the bridge/routing setup, need not be
46
in the same network as the nodes in the cluster.
47

    
48
The ``disk`` option specifies the parameters for the disks of the
49
instance. The numbering of disks starts at zero, and at least one disk
50
needs to be passed. For each disk, either the size or the adoption
51
source needs to be given, and optionally the access mode (read-only or
52
the default of read-write) and LVM volume group can also be specified.
53
The size is interpreted (when no unit is given) in mebibytes. You can
54
also use one of the suffixes *m*, *g* or *t* to specify the exact the
55
units used; these suffixes map to mebibytes, gibibytes and tebibytes.
56

    
57
When using the ``adopt`` key in the disk definition, Ganeti will
58
reuse those volumes (instead of creating new ones) as the
59
instance's disks. Ganeti will rename these volumes to the standard
60
format, and (without installing the OS) will use them as-is for the
61
instance. This allows migrating instances from non-managed mode
62
(e.q. plain KVM with LVM) to being managed via Ganeti. Note that
63
this works only for the \`plain' disk template (see below for
64
template details).
65

    
66
Alternatively, a single-disk instance can be created via the ``-s``
67
option which takes a single argument, the size of the disk. This is
68
similar to the Ganeti 1.2 version (but will only create one disk).
69

    
70
The minimum disk specification is therefore ``--disk 0:size=20G`` (or
71
``-s 20G`` when using the ``-s`` option), and a three-disk instance
72
can be specified as ``--disk 0:size=20G --disk 1:size=4G --disk
73
2:size=100G``.
74

    
75
The ``--no-ip-check`` skips the checks that are done to see if the
76
instance's IP is not already alive (i.e. reachable from the master
77
node).
78

    
79
The ``--no-name-check`` skips the check for the instance name via
80
the resolver (e.g. in DNS or /etc/hosts, depending on your setup).
81
Since the name check is used to compute the IP address, if you pass
82
this option you must also pass the ``--no-ip-check`` option.
83

    
84
If you don't wat the instance to automatically start after
85
creation, this is possible via the ``--no-start`` option. This will
86
leave the instance down until a subsequent **gnt-instance start**
87
command.
88

    
89
The NICs of the instances can be specified via the ``--net``
90
option. By default, one NIC is created for the instance, with a
91
random MAC, and set up according the the cluster level nic
92
parameters. Each NIC can take these parameters (all optional):
93

    
94

    
95

    
96
mac
97
    either a value or 'generate' to generate a new unique MAC
98

    
99
ip
100
    specifies the IP address assigned to the instance from the Ganeti
101
    side (this is not necessarily what the instance will use, but what
102
    the node expects the instance to use)
103

    
104
mode
105
    specifies the connection mode for this nic: routed or bridged.
106

    
107
link
108
    in bridged mode specifies the bridge to attach this NIC to, in
109
    routed mode it's intended to differentiate between different
110
    routing tables/instance groups (but the meaning is dependent on the
111
    network script, see gnt-cluster(8) for more details)
112

    
113

    
114
Of these "mode" and "link" are nic parameters, and inherit their
115
default at cluster level.
116
Alternatively, if no network is desired for the instance, you can
117
prevent the default of one NIC with the ``--no-nics`` option.
118

    
119
The ``-o`` options specifies the operating system to be installed.
120
The available operating systems can be listed with **gnt-os list**.
121
Passing ``--no-install`` will however skip the OS installation,
122
allowing a manual import if so desired. Note that the
123
no-installation mode will automatically disable the start-up of the
124
instance (without an OS, it most likely won't be able to start-up
125
successfully).
126

    
127
The ``-B`` option specifies the backend parameters for the
128
instance. If no such parameters are specified, the values are
129
inherited from the cluster. Possible parameters are:
130

    
131
memory
132
    the memory size of the instance; as usual, suffixes can be used to
133
    denote the unit, otherwise the value is taken in mebibites
134

    
135
vcpus
136
    the number of VCPUs to assign to the instance (if this value makes
137
    sense for the hypervisor)
138

    
139
auto\_balance
140
    whether the instance is considered in the N+1 cluster checks
141
    (enough redundancy in the cluster to survive a node failure)
142

    
143

    
144
The ``-H`` option specified the hypervisor to use for the instance
145
(must be one of the enabled hypervisors on the cluster) and
146
optionally custom parameters for this instance. If not other
147
options are used (i.e. the invocation is just -H *NAME*) the
148
instance will inherit the cluster options. The defaults below show
149
the cluster defaults at cluster creation time.
150

    
151
The possible hypervisor options are as follows:
152

    
153
boot\_order
154
    Valid for the Xen HVM and KVM hypervisors.
155

    
156
    A string value denoting the boot order. This has different meaning
157
    for the Xen HVM hypervisor and for the KVM one.
158

    
159
    For Xen HVM, The boot order is a string of letters listing the boot
160
    devices, with valid device letters being:
161

    
162

    
163

    
164
    a
165
        floppy drive
166

    
167
    c
168
        hard disk
169

    
170
    d
171
        CDROM drive
172

    
173
    n
174
        network boot (PXE)
175

    
176

    
177
    The default is not to set an HVM boot order which is interpreted as
178
    'dc'.
179

    
180
    For KVM the boot order is either "cdrom", "disk" or "network".
181
    Please note that older versions of KVM couldn't netboot from virtio
182
    interfaces. This has been fixed in more recent versions and is
183
    confirmed to work at least with qemu-kvm 0.11.1.
184

    
185
blockdev\_prefix
186
    Valid for the Xen HVM and PVM hypervisors.
187

    
188
    Relevant to nonpvops guest kernels, in which the disk device names are
189
    given by the host.  Allows to specify 'xvd', which helps run Red Hat based
190
    installers, driven by anaconda.
191

    
192
cdrom\_image\_path
193
    Valid for the Xen HVM and KVM hypervisors.
194

    
195
    The path to a CDROM image to attach to the instance.
196

    
197
nic\_type
198
    Valid for the Xen HVM and KVM hypervisors.
199

    
200
    This parameter determines the way the network cards are presented
201
    to the instance. The possible options are:
202

    
203

    
204

    
205
    rtl8139 (default for Xen HVM) (HVM & KVM)
206
    ne2k\_isa (HVM & KVM)
207
    ne2k\_pci (HVM & KVM)
208
    i82551 (KVM)
209
    i82557b (KVM)
210
    i82559er (KVM)
211
    pcnet (KVM)
212
    e1000 (KVM)
213
    paravirtual (default for KVM) (HVM & KVM)
214

    
215

    
216
disk\_type
217
    Valid for the Xen HVM and KVM hypervisors.
218

    
219
    This parameter determines the way the disks are presented to the
220
    instance. The possible options are:
221

    
222

    
223

    
224
    ioemu (default for HVM & KVM) (HVM & KVM)
225
    ide (HVM & KVM)
226
    scsi (KVM)
227
    sd (KVM)
228
    mtd (KVM)
229
    pflash (KVM)
230

    
231

    
232
vnc\_bind\_address
233
    Valid for the Xen HVM and KVM hypervisors.
234

    
235
    Specifies the address that the VNC listener for this instance
236
    should bind to. Valid values are IPv4 addresses. Use the address
237
    0.0.0.0 to bind to all available interfaces (this is the default)
238
    or specify the address of one of the interfaces on the node to
239
    restrict listening to that interface.
240

    
241
vnc\_tls
242
    Valid for the KVM hypervisor.
243

    
244
    A boolean option that controls whether the VNC connection is
245
    secured with TLS.
246

    
247
vnc\_x509\_path
248
    Valid for the KVM hypervisor.
249

    
250
    If ``vnc_tls`` is enabled, this options specifies the path to the
251
    x509 certificate to use.
252

    
253
vnc\_x509\_verify
254
    Valid for the KVM hypervisor.
255

    
256
acpi
257
    Valid for the Xen HVM and KVM hypervisors.
258

    
259
    A boolean option that specifies if the hypervisor should enable
260
    ACPI support for this instance. By default, ACPI is disabled.
261

    
262
pae
263
    Valid for the Xen HVM and KVM hypervisors.
264

    
265
    A boolean option that specifies if the hypervisor should enabled
266
    PAE support for this instance. The default is false, disabling PAE
267
    support.
268

    
269
use\_localtime
270
    Valid for the Xen HVM and KVM hypervisors.
271

    
272
    A boolean option that specifies if the instance should be started
273
    with its clock set to the localtime of the machine (when true) or
274
    to the UTC (When false). The default is false, which is useful for
275
    Linux/Unix machines; for Windows OSes, it is recommended to enable
276
    this parameter.
277

    
278
kernel\_path
279
    Valid for the Xen PVM and KVM hypervisors.
280

    
281
    This option specifies the path (on the node) to the kernel to boot
282
    the instance with. Xen PVM instances always require this, while for
283
    KVM if this option is empty, it will cause the machine to load the
284
    kernel from its disks.
285

    
286
kernel\_args
287
    Valid for the Xen PVM and KVM hypervisors.
288

    
289
    This options specifies extra arguments to the kernel that will be
290
    loaded. device. This is always used for Xen PVM, while for KVM it
291
    is only used if the ``kernel_path`` option is also specified.
292

    
293
    The default setting for this value is simply ``"ro"``, which mounts
294
    the root disk (initially) in read-only one. For example, setting
295
    this to single will cause the instance to start in single-user
296
    mode.
297

    
298
initrd\_path
299
    Valid for the Xen PVM and KVM hypervisors.
300

    
301
    This option specifies the path (on the node) to the initrd to boot
302
    the instance with. Xen PVM instances can use this always, while for
303
    KVM if this option is only used if the ``kernel_path`` option is
304
    also specified. You can pass here either an absolute filename (the
305
    path to the initrd) if you want to use an initrd, or use the format
306
    no\_initrd\_path for no initrd.
307

    
308
root\_path
309
    Valid for the Xen PVM and KVM hypervisors.
310

    
311
    This options specifies the name of the root device. This is always
312
    needed for Xen PVM, while for KVM it is only used if the
313
    ``kernel_path`` option is also specified.
314

    
315
serial\_console
316
    Valid for the KVM hypervisor.
317

    
318
    This boolean option specifies whether to emulate a serial console
319
    for the instance.
320

    
321
disk\_cache
322
    Valid for the KVM hypervisor.
323

    
324
    The disk cache mode. It can be either default to not pass any cache
325
    option to KVM, or one of the KVM cache modes: none (for direct
326
    I/O), writethrough (to use the host cache but report completion to
327
    the guest only when the host has committed the changes to disk) or
328
    writeback (to use the host cache and report completion as soon as
329
    the data is in the host cache). Note that there are special
330
    considerations for the cache mode depending on version of KVM used
331
    and disk type (always raw file under Ganeti), please refer to the
332
    KVM documentation for more details.
333

    
334
security\_model
335
    Valid for the KVM hypervisor.
336

    
337
    The security model for kvm. Currently one of "none", "user" or
338
    "pool". Under "none", the default, nothing is done and instances
339
    are run as the Ganeti daemon user (normally root).
340

    
341
    Under "user" kvm will drop privileges and become the user specified
342
    by the security\_domain parameter.
343

    
344
    Under "pool" a global cluster pool of users will be used, making
345
    sure no two instances share the same user on the same node. (this
346
    mode is not implemented yet)
347

    
348
security\_domain
349
    Valid for the KVM hypervisor.
350

    
351
    Under security model "user" the username to run the instance under.
352
    It must be a valid username existing on the host.
353

    
354
    Cannot be set under security model "none" or "pool".
355

    
356
kvm\_flag
357
    Valid for the KVM hypervisor.
358

    
359
    If "enabled" the -enable-kvm flag is passed to kvm. If "disabled"
360
    -disable-kvm is passed. If unset no flag is passed, and the default
361
    running mode for your kvm binary will be used.
362

    
363
mem\_path
364
    Valid for the KVM hypervisor.
365

    
366
    This option passes the -mem-path argument to kvm with the path (on
367
    the node) to the mount point of the hugetlbfs file system, along
368
    with the -mem-prealloc argument too.
369

    
370
use\_chroot
371
    Valid for the KVM hypervisor.
372

    
373
    This boolean option determines wether to run the KVM instance in a
374
    chroot directory.
375

    
376
    If it is set to ``true``, an empty directory is created before
377
    starting the instance and its path is passed via the -chroot flag
378
    to kvm. The directory is removed when the instance is stopped.
379

    
380
    It is set to ``false`` by default.
381

    
382
migration\_downtime
383
    Valid for the KVM hypervisor.
384

    
385
    The maximum amount of time (in ms) a KVM instance is allowed to be
386
    frozen during a live migration, in order to copy dirty memory
387
    pages. Default value is 30ms, but you may need to increase this
388
    value for busy instances.
389

    
390
    This option is only effective with kvm versions >= 87 and qemu-kvm
391
    versions >= 0.11.0.
392

    
393
cpu\_mask
394
    Valid for the LXC hypervisor.
395

    
396
    The processes belonging to the given instance are only scheduled on
397
    the specified CPUs.
398

    
399
    The parameter format is a comma-separated list of CPU IDs or CPU ID
400
    ranges. The ranges are defined by a lower and higher boundary,
401
    separated by a dash. The boundaries are inclusive.
402

    
403
usb\_mouse
404
    Valid for the KVM hypervisor.
405

    
406
    This option specifies the usb mouse type to be used. It can be
407
    "mouse" or "tablet". When using VNC it's recommended to set it to
408
    "tablet".
409

    
410

    
411
The ``-O`` (``--os-parameters``) option allows customisation of the OS
412
parameters. The actual parameter names and values depends on the OS
413
being used, but the syntax is the same key=value. For example, setting
414
a hypothetical ``dhcp`` parameter to yes can be achieved by::
415

    
416
    gnt-instance add -O dhcp=yes ...
417

    
418

    
419
The ``--iallocator`` option specifies the instance allocator plugin
420
to use. If you pass in this option the allocator will select nodes
421
for this instance automatically, so you don't need to pass them
422
with the ``-n`` option. For more information please refer to the
423
instance allocator documentation.
424

    
425
The ``-t`` options specifies the disk layout type for the instance.
426
The available choices are:
427

    
428

    
429

    
430
diskless
431
    This creates an instance with no disks. Its useful for testing only
432
    (or other special cases).
433

    
434
file
435
    Disk devices will be regular files.
436

    
437
plain
438
    Disk devices will be logical volumes.
439

    
440
drbd
441
    Disk devices will be drbd (version 8.x) on top of lvm volumes.
442

    
443

    
444
The optional second value of the ``--node`` is used for the drbd
445
template type and specifies the remote node.
446

    
447
If you do not want gnt-instance to wait for the disk mirror to be
448
synced, use the ``--no-wait-for-sync`` option.
449

    
450
The ``--file-storage-dir`` specifies the relative path under the
451
cluster-wide file storage directory to store file-based disks. It is
452
useful for having different subdirectories for different
453
instances. The full path of the directory where the disk files are
454
stored will consist of cluster-wide file storage directory + optional
455
subdirectory + instance name. Example:
456
``@RPL_FILE_STORAGE_DIR@``*/mysubdir/instance1.example.com*. This
457
option is only relevant for instances using the file storage backend.
458

    
459
The ``--file-driver`` specifies the driver to use for file-based
460
disks. Note that currently these drivers work with the xen
461
hypervisor only. This option is only relevant for instances using
462
the file storage backend. The available choices are:
463

    
464

    
465

    
466
loop
467
    Kernel loopback driver. This driver uses loopback devices to access
468
    the filesystem within the file. However, running I/O intensive
469
    applications in your instance using the loop driver might result in
470
    slowdowns. Furthermore, if you use the loopback driver consider
471
    increasing the maximum amount of loopback devices (on most systems
472
    it's 8) using the max\_loop param.
473

    
474
blktap
475
    The blktap driver (for Xen hypervisors). In order to be able to use
476
    the blktap driver you should check if the 'blktapctrl' user space
477
    disk agent is running (usually automatically started via xend).
478
    This user-level disk I/O interface has the advantage of better
479
    performance. Especially if you use a network file system (e.g. NFS)
480
    to store your instances this is the recommended choice.
481

    
482

    
483
The ``--submit`` option is used to send the job to the master
484
daemon but not wait for its completion. The job ID will be shown so
485
that it can be examined via **gnt-job info**.
486

    
487
Example::
488

    
489
    # gnt-instance add -t file --disk 0:size=30g -B memory=512 -o debian-etch \
490
      -n node1.example.com --file-storage-dir=mysubdir instance1.example.com
491
    # gnt-instance add -t plain --disk 0:size=30g -B memory=512 -o debian-etch \
492
      -n node1.example.com instance1.example.com
493
    # gnt-instance add -t plain --disk 0:size=30g --disk 1:size=100g,vg=san \
494
      -B memory=512 -o debian-etch -n node1.example.com instance1.example.com
495
    # gnt-instance add -t drbd --disk 0:size=30g -B memory=512 -o debian-etch \
496
      -n node1.example.com:node2.example.com instance2.example.com
497

    
498

    
499
BATCH-CREATE
500
^^^^^^^^^^^^
501

    
502
**batch-create** {instances\_file.json}
503

    
504
This command (similar to the Ganeti 1.2 **batcher** tool) submits
505
multiple instance creation jobs based on a definition file. The
506
instance configurations do not encompass all the possible options
507
for the **add** command, but only a subset.
508

    
509
The instance file should be a valid-formed JSON file, containing a
510
dictionary with instance name and instance parameters. The accepted
511
parameters are:
512

    
513

    
514

    
515
disk\_size
516
    The size of the disks of the instance.
517

    
518
disk\_template
519
    The disk template to use for the instance, the same as in the
520
    **add** command.
521

    
522
backend
523
    A dictionary of backend parameters.
524

    
525
hypervisor
526
    A dictionary with a single key (the hypervisor name), and as value
527
    the hypervisor options. If not passed, the default hypervisor and
528
    hypervisor options will be inherited.
529

    
530
mac, ip, mode, link
531
    Specifications for the one NIC that will be created for the
532
    instance. 'bridge' is also accepted as a backwards compatibile
533
    key.
534

    
535
nics
536
    List of nics that will be created for the instance. Each entry
537
    should be a dict, with mac, ip, mode and link as possible keys.
538
    Please don't provide the "mac, ip, mode, link" parent keys if you
539
    use this method for specifying nics.
540

    
541
primary\_node, secondary\_node
542
    The primary and optionally the secondary node to use for the
543
    instance (in case an iallocator script is not used).
544

    
545
iallocator
546
    Instead of specifying the nodes, an iallocator script can be used
547
    to automatically compute them.
548

    
549
start
550
    whether to start the instance
551

    
552
ip\_check
553
    Skip the check for already-in-use instance; see the description in
554
    the **add** command for details.
555

    
556
name\_check
557
    Skip the name check for instances; see the description in the
558
    **add** command for details.
559

    
560
file\_storage\_dir, file\_driver
561
    Configuration for the file disk type, see the **add** command for
562
    details.
563

    
564

    
565
A simple definition for one instance can be (with most of the
566
parameters taken from the cluster defaults)::
567

    
568
    {
569
      "instance3": {
570
        "template": "drbd",
571
        "os": "debootstrap",
572
        "disk_size": ["25G"],
573
        "iallocator": "dumb"
574
      },
575
      "instance5": {
576
        "template": "drbd",
577
        "os": "debootstrap",
578
        "disk_size": ["25G"],
579
        "iallocator": "dumb",
580
        "hypervisor": "xen-hvm",
581
        "hvparams": {"acpi": true},
582
        "backend": {"memory": 512}
583
      }
584
    }
585

    
586
The command will display the job id for each submitted instance, as
587
follows::
588

    
589
    # gnt-instance batch-create instances.json
590
    instance3: 11224
591
    instance5: 11225
592

    
593
REMOVE
594
^^^^^^
595

    
596
**remove** [--ignore-failures] [--shutdown-timeout=*N*] [--submit]
597
{*instance*}
598

    
599
Remove an instance. This will remove all data from the instance and
600
there is *no way back*. If you are not sure if you use an instance
601
again, use **shutdown** first and leave it in the shutdown state
602
for a while.
603

    
604
The ``--ignore-failures`` option will cause the removal to proceed
605
even in the presence of errors during the removal of the instance
606
(e.g. during the shutdown or the disk removal). If this option is
607
not given, the command will stop at the first error.
608

    
609
The ``--shutdown-timeout`` is used to specify how much time to wait
610
before forcing the shutdown (e.g. ``xm destroy`` in Xen, killing the
611
kvm process for KVM, etc.). By default two minutes are given to each
612
instance to stop.
613

    
614
The ``--submit`` option is used to send the job to the master
615
daemon but not wait for its completion. The job ID will be shown so
616
that it can be examined via **gnt-job info**.
617

    
618
Example::
619

    
620
    # gnt-instance remove instance1.example.com
621

    
622

    
623
LIST
624
^^^^
625

    
626
| **list**
627
| [--no-headers] [--separator=*SEPARATOR*] [--units=*UNITS*]
628
| [-o *[+]FIELD,...*] [instance...]
629

    
630
Shows the currently configured instances with memory usage, disk
631
usage, the node they are running on, and their run status.
632

    
633
The ``--no-headers`` option will skip the initial header line. The
634
``--separator`` option takes an argument which denotes what will be
635
used between the output fields. Both these options are to help
636
scripting.
637

    
638
The units used to display the numeric values in the output varies,
639
depending on the options given. By default, the values will be
640
formatted in the most appropriate unit. If the ``--separator``
641
option is given, then the values are shown in mebibytes to allow
642
parsing by scripts. In both cases, the ``--units`` option can be
643
used to enforce a given output unit.
644

    
645
The ``-o`` option takes a comma-separated list of output fields.
646
The available fields and their meaning are:
647

    
648

    
649

    
650
name
651
    the instance name
652

    
653
os
654
    the OS of the instance
655

    
656
pnode
657
    the primary node of the instance
658

    
659
snodes
660
    comma-separated list of secondary nodes for the instance; usually
661
    this will be just one node
662

    
663
admin\_state
664
    the desired state of the instance (either "yes" or "no" denoting
665
    the instance should run or not)
666

    
667
disk\_template
668
    the disk template of the instance
669

    
670
oper\_state
671
    the actual state of the instance; can be one of the values
672
    "running", "stopped", "(node down)"
673

    
674
status
675
    combined form of admin\_state and oper\_stat; this can be one of:
676
    ERROR\_nodedown if the node of the instance is down, ERROR\_down if
677
    the instance should run but is down, ERROR\_up if the instance
678
    should be stopped but is actually running, ADMIN\_down if the
679
    instance has been stopped (and is stopped) and running if the
680
    instance is set to be running (and is running)
681

    
682
oper\_ram
683
    the actual memory usage of the instance as seen by the hypervisor
684

    
685
oper\_vcpus
686
    the actual number of VCPUs the instance is using as seen by the
687
    hypervisor
688

    
689
ip
690
    the ip address Ganeti recognizes as associated with the first
691
    instance interface
692

    
693
mac
694
    the first instance interface MAC address
695

    
696
nic\_mode
697
    the mode of the first instance NIC (routed or bridged)
698

    
699
nic\_link
700
    the link of the first instance NIC
701

    
702
sda\_size
703
    the size of the instance's first disk
704

    
705
sdb\_size
706
    the size of the instance's second disk, if any
707

    
708
vcpus
709
    the number of VCPUs allocated to the instance
710

    
711
tags
712
    comma-separated list of the instances's tags
713

    
714
serial\_no
715
    the so called 'serial number' of the instance; this is a numeric
716
    field that is incremented each time the instance is modified, and
717
    it can be used to track modifications
718

    
719
ctime
720
    the creation time of the instance; note that this field contains
721
    spaces and as such it's harder to parse
722

    
723
    if this attribute is not present (e.g. when upgrading from older
724
    versions), then "N/A" will be shown instead
725

    
726
mtime
727
    the last modification time of the instance; note that this field
728
    contains spaces and as such it's harder to parse
729

    
730
    if this attribute is not present (e.g. when upgrading from older
731
    versions), then "N/A" will be shown instead
732

    
733
uuid
734
    Show the UUID of the instance (generated automatically by Ganeti)
735

    
736
network\_port
737
    If the instance has a network port assigned to it (e.g. for VNC
738
    connections), this will be shown, otherwise - will be displayed.
739

    
740
beparams
741
    A text format of the entire beparams for the instance. It's more
742
    useful to select individual fields from this dictionary, see
743
    below.
744

    
745
disk.count
746
    The number of instance disks.
747

    
748
disk.size/N
749
    The size of the instance's Nth disk. This is a more generic form of
750
    the sda\_size and sdb\_size fields.
751

    
752
disk.sizes
753
    A comma-separated list of the disk sizes for this instance.
754

    
755
disk\_usage
756
    The total disk space used by this instance on each of its nodes.
757
    This is not the instance-visible disk size, but the actual disk
758
    "cost" of the instance.
759

    
760
nic.mac/N
761
    The MAC of the Nth instance NIC.
762

    
763
nic.ip/N
764
    The IP address of the Nth instance NIC.
765

    
766
nic.mode/N
767
    The mode of the Nth instance NIC
768

    
769
nic.link/N
770
    The link of the Nth instance NIC
771

    
772
nic.macs
773
    A comma-separated list of all the MACs of the instance's NICs.
774

    
775
nic.ips
776
    A comma-separated list of all the IP addresses of the instance's
777
    NICs.
778

    
779
nic.modes
780
    A comma-separated list of all the modes of the instance's NICs.
781

    
782
nic.links
783
    A comma-separated list of all the link parameters of the instance's
784
    NICs.
785

    
786
nic.count
787
    The number of instance nics.
788

    
789
hv/*NAME*
790
    The value of the hypervisor parameter called *NAME*. For details of
791
    what hypervisor parameters exist and their meaning, see the **add**
792
    command.
793

    
794
be/memory
795
    The configured memory for the instance.
796

    
797
be/vcpus
798
    The configured number of VCPUs for the instance.
799

    
800
be/auto\_balance
801
    Whether the instance is considered in N+1 checks.
802

    
803

    
804
If the value of the option starts with the character ``+``, the new
805
field(s) will be added to the default list. This allows to quickly
806
see the default list plus a few other fields, instead of retyping
807
the entire list of fields.
808

    
809
There is a subtle grouping about the available output fields: all
810
fields except for ``oper_state``, ``oper_ram``, ``oper_vcpus`` and
811
``status`` are configuration value and not run-time values. So if
812
you don't select any of the these fields, the query will be
813
satisfied instantly from the cluster configuration, without having
814
to ask the remote nodes for the data. This can be helpful for big
815
clusters when you only want some data and it makes sense to specify
816
a reduced set of output fields.
817

    
818
The default output field list is: name, os, pnode, admin\_state,
819
oper\_state, oper\_ram.
820

    
821

    
822
LIST-FIELDS
823
~~~~~~~~~~
824

    
825
**list-fields** [field...]
826

    
827
Lists available fields for instances.
828

    
829

    
830
INFO
831
^^^^
832

    
833
**info** [-s \| --static] [--roman] {--all \| *instance*}
834

    
835
Show detailed information about the given instance(s). This is
836
different from **list** as it shows detailed data about the
837
instance's disks (especially useful for the drbd disk template).
838

    
839
If the option ``-s`` is used, only information available in the
840
configuration file is returned, without querying nodes, making the
841
operation faster.
842

    
843
Use the ``--all`` to get info about all instances, rather than
844
explicitly passing the ones you're interested in.
845

    
846
The ``--roman`` option can be used to cause envy among people who
847
like ancient cultures, but are stuck with non-latin-friendly
848
cluster virtualization technologies.
849

    
850
MODIFY
851
^^^^^^
852

    
853
| **modify**
854
| [-H *HYPERVISOR\_PARAMETERS*]
855
| [-B *BACKEND\_PARAMETERS*]
856
| [--net add*[:options]* \| --net remove \| --net *N:options*]
857
| [--disk add:size=*SIZE*[,vg=*VG*] \| --disk remove \|
858
|  --disk *N*:mode=*MODE*]
859
| [-t plain | -t drbd -n *new_secondary*]
860
| [--os-type=*OS* [--force-variant]]
861
| [-O, --os-parameters *param*=*value*... ]
862
| [--submit]
863
| {*instance*}
864

    
865
Modifies the memory size, number of vcpus, ip address, MAC address
866
and/or nic parameters for an instance. It can also add and remove
867
disks and NICs to/from the instance. Note that you need to give at
868
least one of the arguments, otherwise the command complains.
869

    
870
The ``-H``, ``-B`` and ``-O`` options specifies hypervisor, backend
871
and OS parameter options in the form of name=value[,...]. For details
872
which options can be specified, see the **add** command.
873

    
874
The ``-t`` option will change the disk template of the instance.
875
Currently only conversions between the plain and drbd disk templates
876
are supported, and the instance must be stopped before attempting the
877
conversion. When changing from the plain to the drbd disk template, a
878
new secondary node must be specified via the ``-n`` option.
879

    
880
The ``--disk add:size=``*SIZE* option adds a disk to the instance. The
881
optional ``vg=``*VG* option specifies LVM volume group other than default
882
vg to create disk on. The ``--disk remove`` option will remove the last
883
disk of the instance. The ``--disk`` *N*``:mode=``*MODE* option will change
884
the mode of the Nth disk of the instance between read-only (``ro``) and
885
read-write (``rw``).
886

    
887
The ``--net add:``*options* option will add a new NIC to the
888
instance. The available options are the same as in the **add** command
889
(mac, ip, link, mode). The ``--net remove`` will remove the last NIC
890
of the instance, while the ``--net`` *N*:*options* option will
891
change the parameters of the Nth instance NIC.
892

    
893
The option ``--os-type`` will change the OS name for the instance
894
(without reinstallation). In case an OS variant is specified that
895
is not found, then by default the modification is refused, unless
896
``--force-variant`` is passed. An invalid OS will also be refused,
897
unless the ``--force`` option is given.
898

    
899
The ``--submit`` option is used to send the job to the master
900
daemon but not wait for its completion. The job ID will be shown so
901
that it can be examined via **gnt-job info**.
902

    
903
All the changes take effect at the next restart. If the instance is
904
running, there is no effect on the instance.
905

    
906
REINSTALL
907
^^^^^^^^^
908

    
909
| **reinstall** [-o *os-type*] [--select-os] [-f *force*]
910
| [--force-multiple]
911
| [--instance \| --node \| --primary \| --secondary \| --all]
912
| [-O *OS\_PARAMETERS*] [--submit] {*instance*...}
913

    
914
Reinstalls the operating system on the given instance(s). The
915
instance(s) must be stopped when running this command. If the
916
``--os-type`` is specified, the operating system is changed.
917

    
918
The ``--select-os`` option switches to an interactive OS reinstall.
919
The user is prompted to select the OS template from the list of
920
available OS templates. OS parameters can be overridden using ``-O``
921
(more documentation for this option under the **add** command).
922

    
923
Since this is a potentially dangerous command, the user will be
924
required to confirm this action, unless the ``-f`` flag is passed.
925
When multiple instances are selected (either by passing multiple
926
arguments or by using the ``--node``, ``--primary``,
927
``--secondary`` or ``--all`` options), the user must pass the
928
``--force-multiple`` options to skip the interactive confirmation.
929

    
930
The ``--submit`` option is used to send the job to the master
931
daemon but not wait for its completion. The job ID will be shown so
932
that it can be examined via **gnt-job info**.
933

    
934
RENAME
935
^^^^^^
936

    
937
| **rename** [--no-ip-check] [--no-name-check] [--submit]
938
| {*instance*} {*new\_name*}
939

    
940
Renames the given instance. The instance must be stopped when
941
running this command. The requirements for the new name are the
942
same as for adding an instance: the new name must be resolvable and
943
the IP it resolves to must not be reachable (in order to prevent
944
duplicate IPs the next time the instance is started). The IP test
945
can be skipped if the ``--no-ip-check`` option is passed.
946

    
947
The ``--no-name-check`` skips the check for the new instance name
948
via the resolver (e.g. in DNS or /etc/hosts, depending on your
949
setup). Since the name check is used to compute the IP address, if
950
you pass this option you must also pass the ``--no-ip-check``
951
option.
952

    
953
The ``--submit`` option is used to send the job to the master
954
daemon but not wait for its completion. The job ID will be shown so
955
that it can be examined via **gnt-job info**.
956

    
957
Starting/stopping/connecting to console
958
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
959

    
960
STARTUP
961
^^^^^^^
962

    
963
| **startup**
964
| [--force] [--ignore-offline]
965
| [--force-multiple]
966
| [--instance \| --node \| --primary \| --secondary \| --all \|
967
| --tags \| --node-tags \| --pri-node-tags \| --sec-node-tags]
968
| [-H ``key=value...``] [-B ``key=value...``]
969
| [--submit]
970
| {*name*...}
971

    
972
Starts one or more instances, depending on the following options.
973
The four available modes are:
974

    
975

    
976
--instance
977
    will start the instances given as arguments (at least one argument
978
    required); this is the default selection
979

    
980
--node
981
    will start the instances who have the given node as either primary
982
    or secondary
983

    
984
--primary
985
    will start all instances whose primary node is in the list of nodes
986
    passed as arguments (at least one node required)
987

    
988
--secondary
989
    will start all instances whose secondary node is in the list of
990
    nodes passed as arguments (at least one node required)
991

    
992
--all
993
    will start all instances in the cluster (no arguments accepted)
994

    
995
--tags
996
    will start all instances in the cluster with the tags given as
997
    arguments
998

    
999
--node-tags
1000
    will start all instances in the cluster on nodes with the tags
1001
    given as arguments
1002

    
1003
--pri-node-tags
1004
    will start all instances in the cluster on primary nodes with the
1005
    tags given as arguments
1006

    
1007
--sec-node-tags
1008
    will start all instances in the cluster on secondary nodes with the
1009
    tags given as arguments
1010

    
1011

    
1012
Note that although you can pass more than one selection option, the
1013
last one wins, so in order to guarantee the desired result, don't
1014
pass more than one such option.
1015

    
1016
Use ``--force`` to start even if secondary disks are failing.
1017
``--ignore-offline`` can be used to ignore offline primary nodes
1018
and mark the instance as started even if the primary is not
1019
available.
1020

    
1021
The ``--force-multiple`` will skip the interactive confirmation in
1022
the case the more than one instance will be affected.
1023

    
1024
The ``-H`` and ``-B`` options specify temporary hypervisor and
1025
backend parameters that can be used to start an instance with
1026
modified parameters. They can be useful for quick testing without
1027
having to modify an instance back and forth, e.g.::
1028

    
1029
    # gnt-instance start -H root_args="single" instance1
1030
    # gnt-instance start -B memory=2048 instance2
1031

    
1032

    
1033
The first form will start the instance instance1 in single-user
1034
mode, and the instance instance2 with 2GB of RAM (this time only,
1035
unless that is the actual instance memory size already). Note that
1036
the values override the instance parameters (and not extend them):
1037
an instance with "root\_args=ro" when started with -H
1038
root\_args=single will result in "single", not "ro single".
1039
The ``--submit`` option is used to send the job to the master
1040
daemon but not wait for its completion. The job ID will be shown so
1041
that it can be examined via **gnt-job info**.
1042

    
1043
Example::
1044

    
1045
    # gnt-instance start instance1.example.com
1046
    # gnt-instance start --node node1.example.com node2.example.com
1047
    # gnt-instance start --all
1048

    
1049

    
1050
SHUTDOWN
1051
^^^^^^^^
1052

    
1053
| **shutdown**
1054
| [--timeout=*N*]
1055
| [--force-multiple] [--ignore-offline]
1056
| [--instance \| --node \| --primary \| --secondary \| --all \|
1057
| --tags \| --node-tags \| --pri-node-tags \| --sec-node-tags]
1058
| [--submit]
1059
| {*name*...}
1060

    
1061
Stops one or more instances. If the instance cannot be cleanly
1062
stopped during a hardcoded interval (currently 2 minutes), it will
1063
forcibly stop the instance (equivalent to switching off the power
1064
on a physical machine).
1065

    
1066
The ``--timeout`` is used to specify how much time to wait before
1067
forcing the shutdown (e.g. ``xm destroy`` in Xen, killing the kvm
1068
process for KVM, etc.). By default two minutes are given to each
1069
instance to stop.
1070

    
1071
The ``--instance``, ``--node``, ``--primary``, ``--secondary``,
1072
``--all``, ``--tags``, ``--node-tags``, ``--pri-node-tags`` and
1073
``--sec-node-tags`` options are similar as for the **startup**
1074
command and they influence the actual instances being shutdown.
1075

    
1076
The ``--submit`` option is used to send the job to the master
1077
daemon but not wait for its completion. The job ID will be shown so
1078
that it can be examined via **gnt-job info**.
1079

    
1080
``--ignore-offline`` can be used to ignore offline primary nodes
1081
and force the instance to be marked as stopped. This option should
1082
be used with care as it can lead to an inconsistent cluster state.
1083

    
1084
Example::
1085

    
1086
    # gnt-instance shutdown instance1.example.com
1087
    # gnt-instance shutdown --all
1088

    
1089

    
1090
REBOOT
1091
^^^^^^
1092

    
1093
| **reboot**
1094
| [--type=*REBOOT-TYPE*]
1095
| [--ignore-secondaries]
1096
| [--shutdown-timeout=*N*]
1097
| [--force-multiple]
1098
| [--instance \| --node \| --primary \| --secondary \| --all \|
1099
| --tags \| --node-tags \| --pri-node-tags \| --sec-node-tags]
1100
| [--submit]
1101
| [*name*...]
1102

    
1103
Reboots one or more instances. The type of reboot depends on the
1104
value of ``--type``. A soft reboot does a hypervisor reboot, a hard
1105
reboot does a instance stop, recreates the hypervisor config for
1106
the instance and starts the instance. A full reboot does the
1107
equivalent of **gnt-instance shutdown && gnt-instance startup**.
1108
The default is hard reboot.
1109

    
1110
For the hard reboot the option ``--ignore-secondaries`` ignores
1111
errors for the secondary node while re-assembling the instance
1112
disks.
1113

    
1114
The ``--instance``, ``--node``, ``--primary``, ``--secondary``,
1115
``--all``, ``--tags``, ``--node-tags``, ``--pri-node-tags`` and
1116
``--sec-node-tags`` options are similar as for the **startup**
1117
command and they influence the actual instances being rebooted.
1118

    
1119
The ``--shutdown-timeout`` is used to specify how much time to wait
1120
before forcing the shutdown (xm destroy in xen, killing the kvm
1121
process, for kvm). By default two minutes are given to each
1122
instance to stop.
1123

    
1124
The ``--force-multiple`` will skip the interactive confirmation in
1125
the case the more than one instance will be affected.
1126

    
1127
Example::
1128

    
1129
    # gnt-instance reboot instance1.example.com
1130
    # gnt-instance reboot --type=full instance1.example.com
1131

    
1132

    
1133
CONSOLE
1134
^^^^^^^
1135

    
1136
**console** [--show-cmd] {*instance*}
1137

    
1138
Connects to the console of the given instance. If the instance is
1139
not up, an error is returned. Use the ``--show-cmd`` option to
1140
display the command instead of executing it.
1141

    
1142
For HVM instances, this will attempt to connect to the serial
1143
console of the instance. To connect to the virtualized "physical"
1144
console of a HVM instance, use a VNC client with the connection
1145
info from the **info** command.
1146

    
1147
Example::
1148

    
1149
    # gnt-instance console instance1.example.com
1150

    
1151

    
1152
Disk management
1153
~~~~~~~~~~~~~~~
1154

    
1155
REPLACE-DISKS
1156
^^^^^^^^^^^^^
1157

    
1158
**replace-disks** [--submit] [--early-release] {-p} [--disks *idx*]
1159
{*instance*}
1160

    
1161
**replace-disks** [--submit] [--early-release] {-s} [--disks *idx*]
1162
{*instance*}
1163

    
1164
**replace-disks** [--submit] [--early-release] {--iallocator *name*
1165
\| --new-secondary *NODE*} {*instance*}
1166

    
1167
**replace-disks** [--submit] [--early-release] {--auto}
1168
{*instance*}
1169

    
1170
This command is a generalized form for replacing disks. It is
1171
currently only valid for the mirrored (DRBD) disk template.
1172

    
1173
The first form (when passing the ``-p`` option) will replace the
1174
disks on the primary, while the second form (when passing the
1175
``-s`` option will replace the disks on the secondary node. For
1176
these two cases (as the node doesn't change), it is possible to
1177
only run the replace for a subset of the disks, using the option
1178
``--disks`` which takes a list of comma-delimited disk indices
1179
(zero-based), e.g. 0,2 to replace only the first and third disks.
1180

    
1181
The third form (when passing either the ``--iallocator`` or the
1182
``--new-secondary`` option) is designed to change secondary node of
1183
the instance. Specifying ``--iallocator`` makes the new secondary
1184
be selected automatically by the specified allocator plugin,
1185
otherwise the new secondary node will be the one chosen manually
1186
via the ``--new-secondary`` option.
1187

    
1188
The fourth form (when using ``--auto``) will automatically
1189
determine which disks of an instance are faulty and replace them
1190
within the same node. The ``--auto`` option works only when an
1191
instance has only faulty disks on either the primary or secondary
1192
node; it doesn't work when both sides have faulty disks.
1193

    
1194
The ``--submit`` option is used to send the job to the master
1195
daemon but not wait for its completion. The job ID will be shown so
1196
that it can be examined via **gnt-job info**.
1197

    
1198
The ``--early-release`` changes the code so that the old storage on
1199
secondary node(s) is removed early (before the resync is completed)
1200
and the internal Ganeti locks for the current (and new, if any)
1201
secondary node are also released, thus allowing more parallelism in
1202
the cluster operation. This should be used only when recovering
1203
from a disk failure on the current secondary (thus the old storage
1204
is already broken) or when the storage on the primary node is known
1205
to be fine (thus we won't need the old storage for potential
1206
recovery).
1207

    
1208
Note that it is not possible to select an offline or drained node
1209
as a new secondary.
1210

    
1211
ACTIVATE-DISKS
1212
^^^^^^^^^^^^^^
1213

    
1214
**activate-disks** [--submit] [--ignore-size] {*instance*}
1215

    
1216
Activates the block devices of the given instance. If successful,
1217
the command will show the location and name of the block devices::
1218

    
1219
    node1.example.com:disk/0:/dev/drbd0
1220
    node1.example.com:disk/1:/dev/drbd1
1221

    
1222

    
1223
In this example, *node1.example.com* is the name of the node on
1224
which the devices have been activated. The *disk/0* and *disk/1*
1225
are the Ganeti-names of the instance disks; how they are visible
1226
inside the instance is hypervisor-specific. */dev/drbd0* and
1227
*/dev/drbd1* are the actual block devices as visible on the node.
1228
The ``--submit`` option is used to send the job to the master
1229
daemon but not wait for its completion. The job ID will be shown so
1230
that it can be examined via **gnt-job info**.
1231

    
1232
The ``--ignore-size`` option can be used to activate disks ignoring
1233
the currently configured size in Ganeti. This can be used in cases
1234
where the configuration has gotten out of sync with the real-world
1235
(e.g. after a partially-failed grow-disk operation or due to
1236
rounding in LVM devices). This should not be used in normal cases,
1237
but only when activate-disks fails without it.
1238

    
1239
Note that it is safe to run this command while the instance is
1240
already running.
1241

    
1242
DEACTIVATE-DISKS
1243
^^^^^^^^^^^^^^^^
1244

    
1245
**deactivate-disks** [--submit] {*instance*}
1246

    
1247
De-activates the block devices of the given instance. Note that if
1248
you run this command for an instance with a drbd disk template,
1249
while it is running, it will not be able to shutdown the block
1250
devices on the primary node, but it will shutdown the block devices
1251
on the secondary nodes, thus breaking the replication.
1252

    
1253
The ``--submit`` option is used to send the job to the master
1254
daemon but not wait for its completion. The job ID will be shown so
1255
that it can be examined via **gnt-job info**.
1256

    
1257
GROW-DISK
1258
^^^^^^^^^
1259

    
1260
**grow-disk** [--no-wait-for-sync] [--submit] {*instance*} {*disk*}
1261
{*amount*}
1262

    
1263
Grows an instance's disk. This is only possible for instances
1264
having a plain or drbd disk template.
1265

    
1266
Note that this command only change the block device size; it will
1267
not grow the actual filesystems, partitions, etc. that live on that
1268
disk. Usually, you will need to:
1269

    
1270

    
1271

    
1272

    
1273
#. use **gnt-instance grow-disk**
1274

    
1275
#. reboot the instance (later, at a convenient time)
1276

    
1277
#. use a filesystem resizer, such as ext2online(8) or
1278
   xfs\_growfs(8) to resize the filesystem, or use fdisk(8) to change
1279
   the partition table on the disk
1280

    
1281

    
1282
The *disk* argument is the index of the instance disk to grow. The
1283
*amount* argument is given either as a number (and it represents
1284
the amount to increase the disk with in mebibytes) or can be given
1285
similar to the arguments in the create instance operation, with a
1286
suffix denoting the unit.
1287

    
1288
Note that the disk grow operation might complete on one node but
1289
fail on the other; this will leave the instance with
1290
different-sized LVs on the two nodes, but this will not create
1291
problems (except for unused space).
1292

    
1293
If you do not want gnt-instance to wait for the new disk region to
1294
be synced, use the ``--no-wait-for-sync`` option.
1295

    
1296
The ``--submit`` option is used to send the job to the master
1297
daemon but not wait for its completion. The job ID will be shown so
1298
that it can be examined via **gnt-job info**.
1299

    
1300
Example (increase the first disk for instance1 by 16GiB)::
1301

    
1302
    # gnt-instance grow-disk instance1.example.com 0 16g
1303

    
1304

    
1305
Also note that disk shrinking is not supported; use
1306
**gnt-backup export** and then **gnt-backup import** to reduce the
1307
disk size of an instance.
1308

    
1309
RECREATE-DISKS
1310
^^^^^^^^^^^^^^
1311

    
1312
**recreate-disks** [--submit] [--disks=``indices``] {*instance*}
1313

    
1314
Recreates the disks of the given instance, or only a subset of the
1315
disks (if the option ``disks`` is passed, which must be a
1316
comma-separated list of disk indices, starting from zero).
1317

    
1318
Note that this functionality should only be used for missing disks;
1319
if any of the given disks already exists, the operation will fail.
1320
While this is suboptimal, recreate-disks should hopefully not be
1321
needed in normal operation and as such the impact of this is low.
1322

    
1323
The ``--submit`` option is used to send the job to the master
1324
daemon but not wait for its completion. The job ID will be shown so
1325
that it can be examined via **gnt-job info**.
1326

    
1327
Recovery
1328
~~~~~~~~
1329

    
1330
FAILOVER
1331
^^^^^^^^
1332

    
1333
**failover** [-f] [--ignore-consistency] [--shutdown-timeout=*N*]
1334
[--submit] {*instance*}
1335

    
1336
Failover will fail the instance over its secondary node. This works
1337
only for instances having a drbd disk template.
1338

    
1339
Normally the failover will check the consistency of the disks
1340
before failing over the instance. If you are trying to migrate
1341
instances off a dead node, this will fail. Use the
1342
``--ignore-consistency`` option for this purpose. Note that this
1343
option can be dangerous as errors in shutting down the instance
1344
will be ignored, resulting in possibly having the instance running
1345
on two machines in parallel (on disconnected DRBD drives).
1346

    
1347
The ``--shutdown-timeout`` is used to specify how much time to wait
1348
before forcing the shutdown (xm destroy in xen, killing the kvm
1349
process, for kvm). By default two minutes are given to each
1350
instance to stop.
1351

    
1352
The ``--submit`` option is used to send the job to the master
1353
daemon but not wait for its completion. The job ID will be shown so
1354
that it can be examined via **gnt-job info**.
1355

    
1356
Example::
1357

    
1358
    # gnt-instance failover instance1.example.com
1359

    
1360

    
1361
MIGRATE
1362
^^^^^^^
1363

    
1364
**migrate** [-f] {--cleanup} {*instance*}
1365

    
1366
**migrate** [-f] [--non-live] [--migration-mode=live\|non-live]
1367
{*instance*}
1368

    
1369
Migrate will move the instance to its secondary node without
1370
shutdown. It only works for instances having the drbd8 disk
1371
template type.
1372

    
1373
The migration command needs a perfectly healthy instance, as we
1374
rely on the dual-master capability of drbd8 and the disks of the
1375
instance are not allowed to be degraded.
1376

    
1377
The ``--non-live`` and ``--migration-mode=non-live`` options will
1378
switch (for the hypervisors that support it) between a "fully live"
1379
(i.e. the interruption is as minimal as possible) migration and one
1380
in which the instance is frozen, its state saved and transported to
1381
the remote node, and then resumed there. This all depends on the
1382
hypervisor support for two different methods. In any case, it is
1383
not an error to pass this parameter (it will just be ignored if the
1384
hypervisor doesn't support it). The option
1385
``--migration-mode=live`` option will request a fully-live
1386
migration. The default, when neither option is passed, depends on
1387
the hypervisor parameters (and can be viewed with the
1388
**gnt-cluster info** command).
1389

    
1390
If the ``--cleanup`` option is passed, the operation changes from
1391
migration to attempting recovery from a failed previous migration.
1392
In this mode, Ganeti checks if the instance runs on the correct
1393
node (and updates its configuration if not) and ensures the
1394
instances's disks are configured correctly. In this mode, the
1395
``--non-live`` option is ignored.
1396

    
1397
The option ``-f`` will skip the prompting for confirmation.
1398

    
1399
Example (and expected output)::
1400

    
1401
    # gnt-instance migrate instance1
1402
    Migrate will happen to the instance instance1. Note that migration is
1403
    **experimental** in this version. This might impact the instance if
1404
    anything goes wrong. Continue?
1405
    y/[n]/?: y
1406
    * checking disk consistency between source and target
1407
    * ensuring the target is in secondary mode
1408
    * changing disks into dual-master mode
1409
     - INFO: Waiting for instance instance1 to sync disks.
1410
     - INFO: Instance instance1's disks are in sync.
1411
    * migrating instance to node2.example.com
1412
    * changing the instance's disks on source node to secondary
1413
     - INFO: Waiting for instance instance1 to sync disks.
1414
     - INFO: Instance instance1's disks are in sync.
1415
    * changing the instance's disks to single-master
1416
    #
1417

    
1418

    
1419
MOVE
1420
^^^^
1421

    
1422
**move** [-f] [-n *node*] [--shutdown-timeout=*N*] [--submit]
1423
{*instance*}
1424

    
1425
Move will move the instance to an arbitrary node in the cluster.
1426
This works only for instances having a plain or file disk
1427
template.
1428

    
1429
Note that since this operation is done via data copy, it will take
1430
a long time for big disks (similar to replace-disks for a drbd
1431
instance).
1432

    
1433
The ``--shutdown-timeout`` is used to specify how much time to wait
1434
before forcing the shutdown (e.g. ``xm destroy`` in XEN, killing the
1435
kvm process for KVM, etc.). By default two minutes are given to each
1436
instance to stop.
1437

    
1438
The ``--submit`` option is used to send the job to the master
1439
daemon but not wait for its completion. The job ID will be shown so
1440
that it can be examined via **gnt-job info**.
1441

    
1442
Example::
1443

    
1444
    # gnt-instance move -n node3.example.com instance1.example.com
1445

    
1446

    
1447
TAGS
1448
~~~~
1449

    
1450
ADD-TAGS
1451
^^^^^^^^
1452

    
1453
**add-tags** [--from *file*] {*instancename*} {*tag*...}
1454

    
1455
Add tags to the given instance. If any of the tags contains invalid
1456
characters, the entire operation will abort.
1457

    
1458
If the ``--from`` option is given, the list of tags will be
1459
extended with the contents of that file (each line becomes a tag).
1460
In this case, there is not need to pass tags on the command line
1461
(if you do, both sources will be used). A file name of - will be
1462
interpreted as stdin.
1463

    
1464
LIST-TAGS
1465
^^^^^^^^^
1466

    
1467
**list-tags** {*instancename*}
1468

    
1469
List the tags of the given instance.
1470

    
1471
REMOVE-TAGS
1472
^^^^^^^^^^^
1473

    
1474
**remove-tags** [--from *file*] {*instancename*} {*tag*...}
1475

    
1476
Remove tags from the given instance. If any of the tags are not
1477
existing on the node, the entire operation will abort.
1478

    
1479
If the ``--from`` option is given, the list of tags to be removed will
1480
be extended with the contents of that file (each line becomes a tag).
1481
In this case, there is not need to pass tags on the command line (if
1482
you do, tags from both sources will be removed). A file name of - will
1483
be interpreted as stdin.