Statistics
| Branch: | Tag: | Revision:

root / NEWS @ 7b5f0674

History | View | Annotate | Download (122.7 kB)

1
News
2
====
3

    
4

    
5
Version 2.10.0 rc1
6
------------------
7

    
8
*(Released Tue, 17 Dec 2013)*
9

    
10
Incompatible/important changes
11
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12

    
13
- Adding disks with 'gnt-instance modify' now waits for the disks to sync per
14
  default. Specify --no-wait-for-sync to override this behavior.
15
- The Ganeti python code now adheres to a private-module layout. In particular,
16
  the module 'ganeti' is no longer in the python search path.
17
- On instance allocation, the iallocator now considers non-LVM storage
18
  properly. In particular, actual file storage space information is used
19
  when allocating space for a file/sharedfile instance.
20
- When disabling disk templates cluster-wide, the cluster now first
21
  checks whether there are instances still using those templates.
22
- 'gnt-node list-storage' now also reports storage information about
23
  file-based storage types.
24
- In case of non drbd instances, export \*_SECONDARY environment variables
25
  as empty strings (and not "None") during 'instance-migrate' related hooks.
26

    
27
New features
28
~~~~~~~~~~~~
29

    
30
- KVM hypervisors can now access RBD storage directly without having to
31
  go through a block device.
32
- A new command 'gnt-cluster upgrade' was added that automates the upgrade
33
  procedure between two Ganeti versions that are both 2.10 or higher.
34
- The move-instance command can now change disk templates when moving
35
  instances, and does not require any node placement options to be
36
  specified if the destination cluster has a default iallocator.
37
- Users can now change the soundhw and cpuid settings for XEN hypervisors.
38
- Hail and hbal now have the (optional) capability of accessing average CPU
39
  load information through the monitoring deamon, and to use it to dynamically
40
  adapt the allocation of instances.
41
- Hotplug support. Introduce new option '--hotplug' to ``gnt-instance modify``
42
  so that disk and NIC modifications take effect without the need of actual
43
  reboot. There are a couple of constrains currently for this feature:
44

    
45
   - only KVM hypervisor (versions >= 1.0) supports it,
46
   - one can not (yet) hotplug a disk using userspace access mode for RBD
47
   - in case of a downgrade instances should suffer a reboot in order to
48
     be migratable (due to core change of runtime files)
49

    
50
Misc changes
51
~~~~~~~~~~~~
52

    
53
- A new test framework for logical units was introduced and the test
54
  coverage for logical units was improved significantly.
55
- Opcodes are entirely generated from Haskell using the tool 'hs2py' and
56
  the module 'src/Ganeti/OpCodes.hs'.
57
- Constants are also generated from Haskell using the tool
58
  'hs2py-constants' and the module 'src/Ganeti/Constants.hs', with the
59
  exception of socket related constants, which require changing the
60
  cluster configuration file, and HVS related constants, because they
61
  are part of a port of instance queries to Haskell.  As a result, these
62
  changes will be part of the next release of Ganeti.
63

    
64
New dependencies
65
~~~~~~~~~~~~~~~~
66

    
67
The following new dependencies have been added/updated.
68

    
69
Python
70

    
71
- The version requirements for ``python-mock`` have increased to at least
72
  version 1.0.1. It is still used for testing only.
73

    
74
Since 2.10.0 beta1
75
~~~~~~~~~~~~~~~~~~
76

    
77
- All known issues in 2.10.0 beta1 have been resolved (see changes from
78
  the 2.8 branch).
79
- Improve handling of KVM runtime files from earlier Ganeti versions
80
- Documentation fixes
81

    
82
Inherited from the 2.9 branch:
83

    
84
- use custom KVM path if set for version checking
85
- SingleNotifyPipeCondition: don't share pollers
86

    
87
Inherited from the 2.8 branch:
88

    
89
- Fixed Luxi daemon socket permissions after master-failover
90
- Improve IP version detection code directly checking for colons rather than
91
  passing the family from the cluster object
92
- Fix NODE/NODE_RES locking in LUInstanceCreate by not acquiring NODE_RES locks
93
  opportunistically anymore (Issue 622)
94
- Allow link local IPv6 gateways (Issue 624)
95
- Fix error printing (Issue 616)
96
- Fix a bug in InstanceSetParams concerning names: in case no name is passed in
97
  disk modifications, keep the old one. If name=none then set disk name to
98
  None.
99
- Update build_chroot script to work with the latest hackage packages
100
- Add a packet number limit to "fping" in master-ip-setup (Issue 630)
101
- Fix evacuation out of drained node (Issue 615)
102
- Add default file_driver if missing (Issue 571)
103
- Fix job error message after unclean master shutdown (Issue 618)
104
- Lock group(s) when creating instances (Issue 621)
105
- SetDiskID() before accepting an instance (Issue 633)
106
- Allow the ext template disks to receive arbitrary parameters, both at creation
107
  time and while being modified
108
- Xen handle domain shutdown (future proofing cherry-pick)
109
- Refactor reading live data in htools (future proofing cherry-pick)
110

    
111

    
112
Version 2.10.0 beta1
113
--------------------
114

    
115
*(Released Wed, 27 Nov 2013)*
116

    
117
This was the first beta release of the 2.10 series. All important changes
118
are listed in the latest 2.10 entry.
119

    
120
Known issues
121
~~~~~~~~~~~~
122

    
123
The following issues are known to be present in the beta and will be fixed
124
before rc1.
125

    
126
- Issue 477: Wrong permissions for confd LUXI socket
127
- Issue 621: Instance related opcodes do not aquire network/group locks
128
- Issue 622: Assertion Error: Node locks differ from node resource locks
129
- Issue 623: IPv6 Masterd <-> Luxid communication error
130

    
131

    
132
Version 2.9.2
133
-------------
134

    
135
*(Released Fri, 13 Dec 2013)*
136

    
137
- use custom KVM path if set for version checking
138
- SingleNotifyPipeCondition: don't share pollers
139

    
140
Inherited from the 2.8 branch:
141

    
142
- Fixed Luxi daemon socket permissions after master-failover
143
- Improve IP version detection code directly checking for colons rather than
144
  passing the family from the cluster object
145
- Fix NODE/NODE_RES locking in LUInstanceCreate by not acquiring NODE_RES locks
146
  opportunistically anymore (Issue 622)
147
- Allow link local IPv6 gateways (Issue 624)
148
- Fix error printing (Issue 616)
149
- Fix a bug in InstanceSetParams concerning names: in case no name is passed in
150
  disk modifications, keep the old one. If name=none then set disk name to
151
  None.
152
- Update build_chroot script to work with the latest hackage packages
153
- Add a packet number limit to "fping" in master-ip-setup (Issue 630)
154
- Fix evacuation out of drained node (Issue 615)
155
- Add default file_driver if missing (Issue 571)
156
- Fix job error message after unclean master shutdown (Issue 618)
157
- Lock group(s) when creating instances (Issue 621)
158
- SetDiskID() before accepting an instance (Issue 633)
159
- Allow the ext template disks to receive arbitrary parameters, both at creation
160
  time and while being modified
161
- Xen handle domain shutdown (future proofing cherry-pick)
162
- Refactor reading live data in htools (future proofing cherry-pick)
163

    
164

    
165
Version 2.9.1
166
-------------
167

    
168
*(Released Wed, 13 Nov 2013)*
169

    
170
- fix bug, that kept nodes offline when readding
171
- when verifying DRBD versions, ignore unavailable nodes
172
- fix bug that made the console unavailable on kvm in split-user
173
  setup (issue 608)
174
- DRBD: ensure peers are UpToDate for dual-primary (inherited 2.8.2)
175

    
176

    
177
Version 2.9.0
178
-------------
179

    
180
*(Released Tue, 5 Nov 2013)*
181

    
182
Incompatible/important changes
183
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
184

    
185
- hroller now also plans for capacity to move non-redundant instances off
186
  any node to be rebooted; the old behavior of completely ignoring any
187
  non-redundant instances can be restored by adding the --ignore-non-redundant
188
  option.
189
- The cluster option '--no-lvm-storage' was removed in favor of the new option
190
  '--enabled-disk-templates'.
191
- On instance creation, disk templates no longer need to be specified
192
  with '-t'. The default disk template will be taken from the list of
193
  enabled disk templates.
194
- The monitoring daemon is now running as root, in order to be able to collect
195
  information only available to root (such as the state of Xen instances).
196
- The ConfD client is now IPv6 compatible.
197
- File and shared file storage is no longer dis/enabled at configure time,
198
  but using the option '--enabled-disk-templates' at cluster initialization and
199
  modification.
200
- The default directories for file and shared file storage are not anymore
201
  specified at configure time, but taken from the cluster's configuration.
202
  They can be set at cluster initialization and modification with
203
  '--file-storage-dir' and '--shared-file-storage-dir'.
204
- Cluster verification now includes stricter checks regarding the
205
  default file and shared file storage directories. It now checks that
206
  the directories are explicitely allowed in the 'file-storage-paths' file and
207
  that the directories exist on all nodes.
208
- The list of allowed disk templates in the instance policy and the list
209
  of cluster-wide enabled disk templates is now checked for consistency
210
  on cluster or group modification. On cluster initialization, the ipolicy
211
  disk templates are ensured to be a subset of the cluster-wide enabled
212
  disk templates.
213

    
214
New features
215
~~~~~~~~~~~~
216

    
217
- DRBD 8.4 support. Depending on the installed DRBD version, Ganeti now uses
218
  the correct command syntax. It is possible to use different DRBD versions
219
  on different nodes as long as they are compatible to each other. This
220
  enables rolling upgrades of DRBD with no downtime. As permanent operation
221
  of different DRBD versions within a node group is discouraged,
222
  ``gnt-cluster verify`` will emit a warning if it detects such a situation.
223
- New "inst-status-xen" data collector for the monitoring daemon, providing
224
  information about the state of the xen instances on the nodes.
225
- New "lv" data collector for the monitoring daemon, collecting data about the
226
  logical volumes on the nodes, and pairing them with the name of the instances
227
  they belong to.
228
- New "diskstats" data collector, collecting the data from /proc/diskstats and
229
  presenting them over the monitoring daemon interface.
230
- The ConfD client is now IPv6 compatible.
231

    
232
New dependencies
233
~~~~~~~~~~~~~~~~
234
The following new dependencies have been added.
235

    
236
Python
237

    
238
- ``python-mock`` (http://www.voidspace.org.uk/python/mock/) is now a required
239
  for the unit tests (and only used for testing).
240

    
241
Haskell
242

    
243
- ``hslogger`` (http://software.complete.org/hslogger) is now always
244
  required, even if confd is not enabled.
245

    
246
Since 2.9.0 rc3
247
~~~~~~~~~~~~~~~
248

    
249
- Correctly start/stop luxid during gnt-cluster master-failover (inherited
250
  from stable-2.8)
251
- Improved error messsages (inherited from stable-2.8)
252

    
253

    
254
Version 2.9.0 rc3
255
-----------------
256

    
257
*(Released Tue, 15 Oct 2013)*
258

    
259
The third release candidate in the 2.9 series. Since 2.9.0 rc2:
260

    
261
- in implicit configuration upgrade, match ipolicy with enabled disk templates
262
- improved harep documentation (inherited from stable-2.8)
263

    
264

    
265
Version 2.9.0 rc2
266
-----------------
267

    
268
*(Released Wed, 9 Oct 2013)*
269

    
270
The second release candidate in the 2.9 series. Since 2.9.0 rc1:
271

    
272
- Fix bug in cfgupgrade that led to failure when upgrading from 2.8 with
273
  at least one DRBD instance.
274
- Fix bug in cfgupgrade that led to an invalid 2.8 configuration after
275
  downgrading.
276

    
277

    
278
Version 2.9.0 rc1
279
-----------------
280

    
281
*(Released Tue, 1 Oct 2013)*
282

    
283
The first release candidate in the 2.9 series. Since 2.9.0 beta1:
284

    
285
- various bug fixes
286
- update of the documentation, in particular installation instructions
287
- merging of LD_* constants into DT_* constants
288
- python style changes to be compatible with newer versions of pylint
289

    
290

    
291
Version 2.9.0 beta1
292
-------------------
293

    
294
*(Released Thu, 29 Aug 2013)*
295

    
296
This was the first beta release of the 2.9 series. All important changes
297
are listed in the latest 2.9 entry.
298

    
299

    
300
Version 2.8.3
301
-------------
302

    
303
*(Released Thu, 12 Dec 2013)*
304

    
305
- Fixed Luxi daemon socket permissions after master-failover
306
- Improve IP version detection code directly checking for colons rather than
307
  passing the family from the cluster object
308
- Fix NODE/NODE_RES locking in LUInstanceCreate by not acquiring NODE_RES locks
309
  opportunistically anymore (Issue 622)
310
- Allow link local IPv6 gateways (Issue 624)
311
- Fix error printing (Issue 616)
312
- Fix a bug in InstanceSetParams concerning names: in case no name is passed in
313
  disk modifications, keep the old one. If name=none then set disk name to
314
  None.
315
- Update build_chroot script to work with the latest hackage packages
316
- Add a packet number limit to "fping" in master-ip-setup (Issue 630)
317
- Fix evacuation out of drained node (Issue 615)
318
- Add default file_driver if missing (Issue 571)
319
- Fix job error message after unclean master shutdown (Issue 618)
320
- Lock group(s) when creating instances (Issue 621)
321
- SetDiskID() before accepting an instance (Issue 633)
322
- Allow the ext template disks to receive arbitrary parameters, both at creation
323
  time and while being modified
324
- Xen handle domain shutdown (future proofing cherry-pick)
325
- Refactor reading live data in htools (future proofing cherry-pick)
326

    
327

    
328
Version 2.8.2
329
-------------
330

    
331
*(Released Thu, 07 Nov 2013)*
332

    
333
- DRBD: ensure peers are UpToDate for dual-primary
334
- Improve error message for replace-disks
335
- More dependency checks at configure time
336
- Placate warnings on ganeti.outils_unittest.py
337

    
338

    
339
Version 2.8.1
340
-------------
341

    
342
*(Released Thu, 17 Oct 2013)*
343

    
344
- Correctly start/stop luxid during gnt-cluster master-failover
345
- Don't attempt IPv6 ssh in case of IPv4 cluster (Issue 595)
346
- Fix path for the job queue serial file
347
- Improved harep man page
348
- Minor documentation improvements
349

    
350

    
351
Version 2.8.0
352
-------------
353

    
354
*(Released Mon, 30 Sep 2013)*
355

    
356
Incompatible/important changes
357
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
358

    
359
- Instance policy can contain multiple instance specs, as described in
360
  the โ€œConstrained instance sizesโ€ section of :doc:`Partitioned Ganeti
361
  <design-partitioned>`. As a consequence, it's not possible to partially change
362
  or override instance specs. Bounding specs (min and max) can be specified as a
363
  whole using the new option ``--ipolicy-bounds-specs``, while standard
364
  specs use the new option ``--ipolicy-std-specs``.
365
- The output of the info command of gnt-cluster, gnt-group, gnt-node,
366
  gnt-instance is a valid YAML object.
367
- hail now honors network restrictions when allocating nodes. This led to an
368
  update of the IAllocator protocol. See the IAllocator documentation for
369
  details.
370
- confd now only answers static configuration request over the network. luxid
371
  was extracted, listens on the local LUXI socket and responds to live queries.
372
  This allows finer grained permissions if using separate users.
373

    
374
New features
375
~~~~~~~~~~~~
376

    
377
- The :doc:`Remote API <rapi>` daemon now supports a command line flag
378
  to always require authentication, ``--require-authentication``. It can
379
  be specified in ``$sysconfdir/default/ganeti``.
380
- A new cluster attribute 'enabled_disk_templates' is introduced. It will
381
  be used to manage the disk templates to be used by instances in the cluster.
382
  Initially, it will be set to a list that includes plain, drbd, if they were
383
  enabled by specifying a volume group name, and file and sharedfile, if those
384
  were enabled at configure time. Additionally, it will include all disk
385
  templates that are currently used by instances. The order of disk templates
386
  will be based on Ganeti's history of supporting them. In the future, the
387
  first entry of the list will be used as a default disk template on instance
388
  creation.
389
- ``cfgupgrade`` now supports a ``--downgrade`` option to bring the
390
  configuration back to the previous stable version.
391
- Disk templates in group ipolicy can be restored to the default value.
392
- Initial support for diskless instances and virtual clusters in QA.
393
- More QA and unit tests for instance policies.
394
- Every opcode now contains a reason trail (visible through ``gnt-job info``)
395
  describing why the opcode itself was executed.
396
- The monitoring daemon is now available. It allows users to query the cluster
397
  for obtaining information about the status of the system. The daemon is only
398
  responsible for providing the information over the network: the actual data
399
  gathering is performed by data collectors (currently, only the DRBD status
400
  collector is available).
401
- In order to help developers work on Ganeti, a new script
402
  (``devel/build_chroot``) is provided, for building a chroot that contains all
403
  the required development libraries and tools for compiling Ganeti on a Debian
404
  Squeeze system.
405
- A new tool, ``harep``, for performing self-repair and recreation of instances
406
  in Ganeti has been added.
407
- Split queries are enabled for tags, network, exports, cluster info, groups,
408
  jobs, nodes.
409
- New command ``show-ispecs-cmd`` for ``gnt-cluster`` and ``gnt-group``.
410
  It prints the command line to set the current policies, to ease
411
  changing them.
412
- Add the ``vnet_hdr`` HV parameter for KVM, to control whether the tap
413
  devices for KVM virtio-net interfaces will get created with VNET_HDR
414
  (IFF_VNET_HDR) support. If set to false, it disables offloading on the
415
  virtio-net interfaces, which prevents host kernel tainting and log
416
  flooding, when dealing with broken or malicious virtio-net drivers.
417
  It's set to true by default.
418
- Instance failover now supports a ``--cleanup`` parameter for fixing previous
419
  failures.
420
- Support 'viridian' parameter in Xen HVM
421
- Support DSA SSH keys in bootstrap
422
- To simplify the work of packaging frameworks that want to add the needed users
423
  and groups in a split-user setup themselves, at build time three files in
424
  ``doc/users`` will be generated. The ``groups`` files contains, one per line,
425
  the groups to be generated, the ``users`` file contains, one per line, the
426
  users to be generated, optionally followed by their primary group, where
427
  important. The ``groupmemberships`` file contains, one per line, additional
428
  user-group membership relations that need to be established. The syntax of
429
  these files will remain stable in all future versions.
430

    
431

    
432
New dependencies
433
~~~~~~~~~~~~~~~~
434
The following new dependencies have been added:
435

    
436
For Haskell:
437
- The ``curl`` library is not optional anymore for compiling the Haskell code.
438
- ``snap-server`` library (if monitoring is enabled).
439

    
440
For Python:
441
- The minimum Python version needed to run Ganeti is now 2.6.
442
- ``yaml`` library (only for running the QA).
443

    
444
Since 2.8.0 rc3
445
~~~~~~~~~~~~~~~
446
- Perform proper cleanup on termination of Haskell daemons
447
- Fix corner-case in handling of remaining retry time
448

    
449

    
450
Version 2.8.0 rc3
451
-----------------
452

    
453
*(Released Tue, 17 Sep 2013)*
454

    
455
- To simplify the work of packaging frameworks that want to add the needed users
456
  and groups in a split-user setup themselves, at build time three files in
457
  ``doc/users`` will be generated. The ``groups`` files contains, one per line,
458
  the groups to be generated, the ``users`` file contains, one per line, the
459
  users to be generated, optionally followed by their primary group, where
460
  important. The ``groupmemberships`` file contains, one per line, additional
461
  user-group membership relations that need to be established. The syntax of
462
  these files will remain stable in all future versions.
463
- Add a default to file-driver when unspecified over RAPI (Issue 571)
464
- Mark the DSA host pubkey as optional, and remove it during config downgrade
465
  (Issue 560)
466
- Some documentation fixes
467

    
468

    
469
Version 2.8.0 rc2
470
-----------------
471

    
472
*(Released Tue, 27 Aug 2013)*
473

    
474
The second release candidate of the 2.8 series. Since 2.8.0. rc1:
475

    
476
- Support 'viridian' parameter in Xen HVM (Issue 233)
477
- Include VCS version in ``gnt-cluster version``
478
- Support DSA SSH keys in bootstrap (Issue 338)
479
- Fix batch creation of instances
480
- Use FQDN to check master node status (Issue 551)
481
- Make the DRBD collector more failure-resilient
482

    
483

    
484
Version 2.8.0 rc1
485
-----------------
486

    
487
*(Released Fri, 2 Aug 2013)*
488

    
489
The first release candidate of the 2.8 series. Since 2.8.0 beta1:
490

    
491
- Fix upgrading/downgrading from 2.7
492
- Increase maximum RAPI message size
493
- Documentation updates
494
- Split ``confd`` between ``luxid`` and ``confd``
495
- Merge 2.7 series up to the 2.7.1 release
496
- Allow the ``modify_etc_hosts`` option to be changed
497
- Add better debugging for ``luxid`` queries
498
- Expose bulk parameter for GetJobs in RAPI client
499
- Expose missing ``network`` fields in RAPI
500
- Add some ``cluster verify`` tests
501
- Some unittest fixes
502
- Fix a malfunction in ``hspace``'s tiered allocation
503
- Fix query compatibility between haskell and python implementations
504
- Add the ``vnet_hdr`` HV parameter for KVM
505
- Add ``--cleanup`` to instance failover
506
- Change the connected groups format in ``gnt-network info`` output; it
507
  was previously displayed as a raw list by mistake. (Merged from 2.7)
508

    
509

    
510
Version 2.8.0 beta1
511
-------------------
512

    
513
*(Released Mon, 24 Jun 2013)*
514

    
515
This was the first beta release of the 2.8 series. All important changes
516
are listed in the latest 2.8 entry.
517

    
518

    
519
Version 2.7.2
520
-------------
521

    
522
*(Released Thu, 26 Sep 2013)*
523

    
524
- Change the connected groups format in ``gnt-network info`` output; it
525
  was previously displayed as a raw list by mistake
526
- Check disk template in right dict when copying
527
- Support multi-instance allocs without iallocator
528
- Fix some errors in the documentation
529
- Fix formatting of tuple in an error message
530

    
531

    
532
Version 2.7.1
533
-------------
534

    
535
*(Released Thu, 25 Jul 2013)*
536

    
537
- Add logrotate functionality in daemon-util
538
- Add logrotate example file
539
- Add missing fields to network queries over rapi
540
- Fix network object timestamps
541
- Add support for querying network timestamps
542
- Fix a typo in the example crontab
543
- Fix a documentation typo
544

    
545

    
546
Version 2.7.0
547
-------------
548

    
549
*(Released Thu, 04 Jul 2013)*
550

    
551
Incompatible/important changes
552
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
553

    
554
- Instance policies for disk size were documented to be on a per-disk
555
  basis, but hail applied them to the sum of all disks. This has been
556
  fixed.
557
- ``hbal`` will now exit with status 0 if, during job execution over
558
  LUXI, early exit has been requested and all jobs are successful;
559
  before, exit status 1 was used, which cannot be differentiated from
560
  "job error" case
561
- Compatibility with newer versions of rbd has been fixed
562
- ``gnt-instance batch-create`` has been changed to use the bulk create
563
  opcode from Ganeti. This lead to incompatible changes in the format of
564
  the JSON file. It's now not a custom dict anymore but a dict
565
  compatible with the ``OpInstanceCreate`` opcode.
566
- Parent directories for file storage need to be listed in
567
  ``$sysconfdir/ganeti/file-storage-paths`` now. ``cfgupgrade`` will
568
  write the file automatically based on old configuration values, but it
569
  can not distribute it across all nodes and the file contents should be
570
  verified. Use ``gnt-cluster copyfile
571
  $sysconfdir/ganeti/file-storage-paths`` once the cluster has been
572
  upgraded. The reason for requiring this list of paths now is that
573
  before it would have been possible to inject new paths via RPC,
574
  allowing files to be created in arbitrary locations. The RPC protocol
575
  is protected using SSL/X.509 certificates, but as a design principle
576
  Ganeti does not permit arbitrary paths to be passed.
577
- The parsing of the variants file for OSes (see
578
  :manpage:`ganeti-os-interface(7)`) has been slightly changed: now empty
579
  lines and comment lines (starting with ``#``) are ignored for better
580
  readability.
581
- The ``setup-ssh`` tool added in Ganeti 2.2 has been replaced and is no
582
  longer available. ``gnt-node add`` now invokes a new tool on the
583
  destination node, named ``prepare-node-join``, to configure the SSH
584
  daemon. Paramiko is no longer necessary to configure nodes' SSH
585
  daemons via ``gnt-node add``.
586
- Draining (``gnt-cluster queue drain``) and un-draining the job queue
587
  (``gnt-cluster queue undrain``) now affects all nodes in a cluster and
588
  the flag is not reset after a master failover.
589
- Python 2.4 has *not* been tested with this release. Using 2.6 or above
590
  is recommended. 2.6 will be mandatory from the 2.8 series.
591

    
592

    
593
New features
594
~~~~~~~~~~~~
595

    
596
- New network management functionality to support automatic allocation
597
  of IP addresses and managing of network parameters. See
598
  :manpage:`gnt-network(8)` for more details.
599
- New external storage backend, to allow managing arbitrary storage
600
  systems external to the cluster. See
601
  :manpage:`ganeti-extstorage-interface(7)`.
602
- New ``exclusive-storage`` node parameter added, restricted to
603
  nodegroup level. When it's set to true, physical disks are assigned in
604
  an exclusive fashion to instances, as documented in :doc:`Partitioned
605
  Ganeti <design-partitioned>`.  Currently, only instances using the
606
  ``plain`` disk template are supported.
607
- The KVM hypervisor has been updated with many new hypervisor
608
  parameters, including a generic one for passing arbitrary command line
609
  values. See a complete list in :manpage:`gnt-instance(8)`. It is now
610
  compatible up to qemu 1.4.
611
- A new tool, called ``mon-collector``, is the stand-alone executor of
612
  the data collectors for a monitoring system. As of this version, it
613
  just includes the DRBD data collector, that can be executed by calling
614
  ``mon-collector`` using the ``drbd`` parameter. See
615
  :manpage:`mon-collector(7)`.
616
- A new user option, :pyeval:`rapi.RAPI_ACCESS_READ`, has been added
617
  for RAPI users. It allows granting permissions to query for
618
  information to a specific user without giving
619
  :pyeval:`rapi.RAPI_ACCESS_WRITE` permissions.
620
- A new tool named ``node-cleanup`` has been added. It cleans remains of
621
  a cluster from a machine by stopping all daemons, removing
622
  certificates and ssconf files. Unless the ``--no-backup`` option is
623
  given, copies of the certificates are made.
624
- Instance creations now support the use of opportunistic locking,
625
  potentially speeding up the (parallel) creation of multiple instances.
626
  This feature is currently only available via the :doc:`RAPI
627
  <rapi>` interface and when an instance allocator is used. If the
628
  ``opportunistic_locking`` parameter is set the opcode will try to
629
  acquire as many locks as possible, but will not wait for any locks
630
  held by other opcodes. If not enough resources can be found to
631
  allocate the instance, the temporary error code
632
  :pyeval:`errors.ECODE_TEMP_NORES` is returned. The operation can be
633
  retried thereafter, with or without opportunistic locking.
634
- New experimental linux-ha resource scripts.
635
- Restricted-commands support: ganeti can now be asked (via command line
636
  or rapi) to perform commands on a node. These are passed via ganeti
637
  RPC rather than ssh. This functionality is restricted to commands
638
  specified on the ``$sysconfdir/ganeti/restricted-commands`` for security
639
  reasons. The file is not copied automatically.
640

    
641

    
642
Misc changes
643
~~~~~~~~~~~~
644

    
645
- Diskless instances are now externally mirrored (Issue 237). This for
646
  now has only been tested in conjunction with explicit target nodes for
647
  migration/failover.
648
- Queries not needing locks or RPC access to the node can now be
649
  performed by the confd daemon, making them independent from jobs, and
650
  thus faster to execute. This is selectable at configure time.
651
- The functionality for allocating multiple instances at once has been
652
  overhauled and is now also available through :doc:`RAPI <rapi>`.
653

    
654
There are no significant changes from version 2.7.0~rc3.
655

    
656

    
657
Version 2.7.0 rc3
658
-----------------
659

    
660
*(Released Tue, 25 Jun 2013)*
661

    
662
- Fix permissions on the confd query socket (Issue 477)
663
- Fix permissions on the job archive dir (Issue 498)
664
- Fix handling of an internal exception in replace-disks (Issue 472)
665
- Fix gnt-node info handling of shortened names (Issue 497)
666
- Fix gnt-instance grow-disk when wiping is enabled
667
- Documentation improvements, and support for newer pandoc
668
- Fix hspace honoring ipolicy for disks (Issue 484)
669
- Improve handling of the ``kvm_extra`` HV parameter
670

    
671

    
672
Version 2.7.0 rc2
673
-----------------
674

    
675
*(Released Fri, 24 May 2013)*
676

    
677
- ``devel/upload`` now works when ``/var/run`` on the target nodes is a
678
  symlink.
679
- Disks added through ``gnt-instance modify`` or created through
680
  ``gnt-instance recreate-disks`` are wiped, if the
681
  ``prealloc_wipe_disks`` flag is set.
682
- If wiping newly created disks fails, the disks are removed. Also,
683
  partial failures in creating disks through ``gnt-instance modify``
684
  triggers a cleanup of the partially-created disks.
685
- Removing the master IP address doesn't fail if the address has been
686
  already removed.
687
- Fix ownership of the OS log dir
688
- Workaround missing SO_PEERCRED constant (Issue 191)
689

    
690

    
691
Version 2.7.0 rc1
692
-----------------
693

    
694
*(Released Fri, 3 May 2013)*
695

    
696
This was the first release candidate of the 2.7 series. Since beta3:
697

    
698
- Fix kvm compatibility with qemu 1.4 (Issue 389)
699
- Documentation updates (admin guide, upgrade notes, install
700
  instructions) (Issue 372)
701
- Fix gnt-group list nodes and instances count (Issue 436)
702
- Fix compilation without non-mandatory libraries (Issue 441)
703
- Fix xen-hvm hypervisor forcing nics to type 'ioemu' (Issue 247)
704
- Make confd logging more verbose at INFO level (Issue 435)
705
- Improve "networks" documentation in :manpage:`gnt-instance(8)`
706
- Fix failure path for instance storage type conversion (Issue 229)
707
- Update htools text backend documentation
708
- Improve the renew-crypto section of :manpage:`gnt-cluster(8)`
709
- Disable inter-cluster instance move for file-based instances, because
710
  it is dependant on instance export, which is not supported for
711
  file-based instances. (Issue 414)
712
- Fix gnt-job crashes on non-ascii characters (Issue 427)
713
- Fix volume group checks on non-vm-capable nodes (Issue 432)
714

    
715

    
716
Version 2.7.0 beta3
717
-------------------
718

    
719
*(Released Mon, 22 Apr 2013)*
720

    
721
This was the third beta release of the 2.7 series. Since beta2:
722

    
723
- Fix hail to verify disk instance policies on a per-disk basis (Issue 418).
724
- Fix data loss on wrong usage of ``gnt-instance move``
725
- Properly export errors in confd-based job queries
726
- Add ``users-setup`` tool
727
- Fix iallocator protocol to report 0 as a disk size for diskless
728
  instances. This avoids hail breaking when a diskless instance is
729
  present.
730
- Fix job queue directory permission problem that made confd job queries
731
  fail. This requires running an ``ensure-dirs --full-run`` on upgrade
732
  for access to archived jobs (Issue 406).
733
- Limit the sizes of networks supported by ``gnt-network`` to something
734
  between a ``/16`` and a ``/30`` to prevent memory bloat and crashes.
735
- Fix bugs in instance disk template conversion
736
- Fix GHC 7 compatibility
737
- Fix ``burnin`` install path (Issue 426).
738
- Allow very small disk grows (Issue 347).
739
- Fix a ``ganeti-noded`` memory bloat introduced in 2.5, by making sure
740
  that noded doesn't import masterd code (Issue 419).
741
- Make sure the default metavg at cluster init is the same as the vg, if
742
  unspecified (Issue 358).
743
- Fix cleanup of partially created disks (part of Issue 416)
744

    
745

    
746
Version 2.7.0 beta2
747
-------------------
748

    
749
*(Released Tue, 2 Apr 2013)*
750

    
751
This was the second beta release of the 2.7 series. Since beta1:
752

    
753
- Networks no longer have a "type" slot, since this information was
754
  unused in Ganeti: instead of it tags should be used.
755
- The rapi client now has a ``target_node`` option to MigrateInstance.
756
- Fix early exit return code for hbal (Issue 386).
757
- Fix ``gnt-instance migrate/failover -n`` (Issue 396).
758
- Fix ``rbd showmapped`` output parsing (Issue 312).
759
- Networks are now referenced indexed by UUID, rather than name. This
760
  will require running cfgupgrade, from 2.7.0beta1, if networks are in
761
  use.
762
- The OS environment now includes network information.
763
- Deleting of a network is now disallowed if any instance nic is using
764
  it, to prevent dangling references.
765
- External storage is now documented in man pages.
766
- The exclusive_storage flag can now only be set at nodegroup level.
767
- Hbal can now submit an explicit priority with its jobs.
768
- Many network related locking fixes.
769
- Bump up the required pylint version to 0.25.1.
770
- Fix the ``no_remember`` option in RAPI client.
771
- Many ipolicy related tests, qa, and fixes.
772
- Many documentation improvements and fixes.
773
- Fix building with ``--disable-file-storage``.
774
- Fix ``-q`` option in htools, which was broken if passed more than
775
  once.
776
- Some haskell/python interaction improvements and fixes.
777
- Fix iallocator in case of missing LVM storage.
778
- Fix confd config load in case of ``--no-lvm-storage``.
779
- The confd/query functionality is now mentioned in the security
780
  documentation.
781

    
782

    
783
Version 2.7.0 beta1
784
-------------------
785

    
786
*(Released Wed, 6 Feb 2013)*
787

    
788
This was the first beta release of the 2.7 series. All important changes
789
are listed in the latest 2.7 entry.
790

    
791

    
792
Version 2.6.2
793
-------------
794

    
795
*(Released Fri, 21 Dec 2012)*
796

    
797
Important behaviour change: hbal won't rebalance anymore instances which
798
have the ``auto_balance`` attribute set to false. This was the intention
799
all along, but until now it only skipped those from the N+1 memory
800
reservation (DRBD-specific).
801

    
802
A significant number of bug fixes in this release:
803

    
804
- Fixed disk adoption interaction with ipolicy checks.
805
- Fixed networking issues when instances are started, stopped or
806
  migrated, by forcing the tap device's MAC prefix to "fe" (issue 217).
807
- Fixed the warning in cluster verify for shared storage instances not
808
  being redundant.
809
- Fixed removal of storage directory on shared file storage (issue 262).
810
- Fixed validation of LVM volume group name in OpClusterSetParams
811
  (``gnt-cluster modify``) (issue 285).
812
- Fixed runtime memory increases (``gnt-instance modify -m``).
813
- Fixed live migration under Xen's ``xl`` mode.
814
- Fixed ``gnt-instance console`` with ``xl``.
815
- Fixed building with newer Haskell compiler/libraries.
816
- Fixed PID file writing in Haskell daemons (confd); this prevents
817
  restart issues if confd was launched manually (outside of
818
  ``daemon-util``) while another copy of it was running
819
- Fixed a type error when doing live migrations with KVM (issue 297) and
820
  the error messages for failing migrations have been improved.
821
- Fixed opcode validation for the out-of-band commands (``gnt-node
822
  power``).
823
- Fixed a type error when unsetting OS hypervisor parameters (issue
824
  311); now it's possible to unset all OS-specific hypervisor
825
  parameters.
826
- Fixed the ``dry-run`` mode for many operations: verification of
827
  results was over-zealous but didn't take into account the ``dry-run``
828
  operation, resulting in "wrong" failures.
829
- Fixed bash completion in ``gnt-job list`` when the job queue has
830
  hundreds of entries; especially with older ``bash`` versions, this
831
  results in significant CPU usage.
832

    
833
And lastly, a few other improvements have been made:
834

    
835
- Added option to force master-failover without voting (issue 282).
836
- Clarified error message on lock conflict (issue 287).
837
- Logging of newly submitted jobs has been improved (issue 290).
838
- Hostname checks have been made uniform between instance rename and
839
  create (issue 291).
840
- The ``--submit`` option is now supported by ``gnt-debug delay``.
841
- Shutting down the master daemon by sending SIGTERM now stops it from
842
  processing jobs waiting for locks; instead, those jobs will be started
843
  once again after the master daemon is started the next time (issue
844
  296).
845
- Support for Xen's ``xl`` program has been improved (besides the fixes
846
  above).
847
- Reduced logging noise in the Haskell confd daemon (only show one log
848
  entry for each config reload, instead of two).
849
- Several man page updates and typo fixes.
850

    
851

    
852
Version 2.6.1
853
-------------
854

    
855
*(Released Fri, 12 Oct 2012)*
856

    
857
A small bugfix release. Among the bugs fixed:
858

    
859
- Fixed double use of ``PRIORITY_OPT`` in ``gnt-node migrate``, that
860
  made the command unusable.
861
- Commands that issue many jobs don't fail anymore just because some jobs
862
  take so long that other jobs are archived.
863
- Failures during ``gnt-instance reinstall`` are reflected by the exit
864
  status.
865
- Issue 190 fixed. Check for DRBD in cluster verify is enabled only when
866
  DRBD is enabled.
867
- When ``always_failover`` is set, ``--allow-failover`` is not required
868
  in migrate commands anymore.
869
- ``bash_completion`` works even if extglob is disabled.
870
- Fixed bug with locks that made failover for RDB-based instances fail.
871
- Fixed bug in non-mirrored instance allocation that made Ganeti choose
872
  a random node instead of one based on the allocator metric.
873
- Support for newer versions of pylint and pep8.
874
- Hail doesn't fail anymore when trying to add an instance of type
875
  ``file``, ``sharedfile`` or ``rbd``.
876
- Added new Makefile target to rebuild the whole distribution, so that
877
  all files are included.
878

    
879

    
880
Version 2.6.0
881
-------------
882

    
883
*(Released Fri, 27 Jul 2012)*
884

    
885

    
886
.. attention:: The ``LUXI`` protocol has been made more consistent
887
   regarding its handling of command arguments. This, however, leads to
888
   incompatibility issues with previous versions. Please ensure that you
889
   restart Ganeti daemons soon after the upgrade, otherwise most
890
   ``LUXI`` calls (job submission, setting/resetting the drain flag,
891
   pausing/resuming the watcher, cancelling and archiving jobs, querying
892
   the cluster configuration) will fail.
893

    
894

    
895
New features
896
~~~~~~~~~~~~
897

    
898
Instance run status
899
+++++++++++++++++++
900

    
901
The current ``admin_up`` field, which used to denote whether an instance
902
should be running or not, has been removed. Instead, ``admin_state`` is
903
introduced, with 3 possible values -- ``up``, ``down`` and ``offline``.
904

    
905
The rational behind this is that an instance being โ€œdownโ€ can have
906
different meanings:
907

    
908
- it could be down during a reboot
909
- it could be temporarily be down for a reinstall
910
- or it could be down because it is deprecated and kept just for its
911
  disk
912

    
913
The previous Boolean state was making it difficult to do capacity
914
calculations: should Ganeti reserve memory for a down instance? Now, the
915
tri-state field makes it clear:
916

    
917
- in ``up`` and ``down`` state, all resources are reserved for the
918
  instance, and it can be at any time brought up if it is down
919
- in ``offline`` state, only disk space is reserved for it, but not
920
  memory or CPUs
921

    
922
The field can have an extra use: since the transition between ``up`` and
923
``down`` and vice-versus is done via ``gnt-instance start/stop``, but
924
transition between ``offline`` and ``down`` is done via ``gnt-instance
925
modify``, it is possible to given different rights to users. For
926
example, owners of an instance could be allowed to start/stop it, but
927
not transition it out of the offline state.
928

    
929
Instance policies and specs
930
+++++++++++++++++++++++++++
931

    
932
In previous Ganeti versions, an instance creation request was not
933
limited on the minimum size and on the maximum size just by the cluster
934
resources. As such, any policy could be implemented only in third-party
935
clients (RAPI clients, or shell wrappers over ``gnt-*``
936
tools). Furthermore, calculating cluster capacity via ``hspace`` again
937
required external input with regards to instance sizes.
938

    
939
In order to improve these workflows and to allow for example better
940
per-node group differentiation, we introduced instance specs, which
941
allow declaring:
942

    
943
- minimum instance disk size, disk count, memory size, cpu count
944
- maximum values for the above metrics
945
- and โ€œstandardโ€ values (used in ``hspace`` to calculate the standard
946
  sized instances)
947

    
948
The minimum/maximum values can be also customised at node-group level,
949
for example allowing more powerful hardware to support bigger instance
950
memory sizes.
951

    
952
Beside the instance specs, there are a few other settings belonging to
953
the instance policy framework. It is possible now to customise, per
954
cluster and node-group:
955

    
956
- the list of allowed disk templates
957
- the maximum ratio of VCPUs per PCPUs (to control CPU oversubscription)
958
- the maximum ratio of instance to spindles (see below for more
959
  information) for local storage
960

    
961
All these together should allow all tools that talk to Ganeti to know
962
what are the ranges of allowed values for instances and the
963
over-subscription that is allowed.
964

    
965
For the VCPU/PCPU ratio, we already have the VCPU configuration from the
966
instance configuration, and the physical CPU configuration from the
967
node. For the spindle ratios however, we didn't track before these
968
values, so new parameters have been added:
969

    
970
- a new node parameter ``spindle_count``, defaults to 1, customisable at
971
  node group or node level
972
- at new backend parameter (for instances), ``spindle_use`` defaults to 1
973

    
974
Note that spindles in this context doesn't need to mean actual
975
mechanical hard-drives; it's just a relative number for both the node
976
I/O capacity and instance I/O consumption.
977

    
978
Instance migration behaviour
979
++++++++++++++++++++++++++++
980

    
981
While live-migration is in general desirable over failover, it is
982
possible that for some workloads it is actually worse, due to the
983
variable time of the โ€œsuspendโ€ phase during live migration.
984

    
985
To allow the tools to work consistently over such instances (without
986
having to hard-code instance names), a new backend parameter
987
``always_failover`` has been added to control the migration/failover
988
behaviour. When set to True, all migration requests for an instance will
989
instead fall-back to failover.
990

    
991
Instance memory ballooning
992
++++++++++++++++++++++++++
993

    
994
Initial support for memory ballooning has been added. The memory for an
995
instance is no longer fixed (backend parameter ``memory``), but instead
996
can vary between minimum and maximum values (backend parameters
997
``minmem`` and ``maxmem``). Currently we only change an instance's
998
memory when:
999

    
1000
- live migrating or failing over and instance and the target node
1001
  doesn't have enough memory
1002
- user requests changing the memory via ``gnt-instance modify
1003
  --runtime-memory``
1004

    
1005
Instance CPU pinning
1006
++++++++++++++++++++
1007

    
1008
In order to control the use of specific CPUs by instance, support for
1009
controlling CPU pinning has been added for the Xen, HVM and LXC
1010
hypervisors. This is controlled by a new hypervisor parameter
1011
``cpu_mask``; details about possible values for this are in the
1012
:manpage:`gnt-instance(8)`. Note that use of the most specific (precise
1013
VCPU-to-CPU mapping) form will work well only when all nodes in your
1014
cluster have the same amount of CPUs.
1015

    
1016
Disk parameters
1017
+++++++++++++++
1018

    
1019
Another area in which Ganeti was not customisable were the parameters
1020
used for storage configuration, e.g. how many stripes to use for LVM,
1021
DRBD resync configuration, etc.
1022

    
1023
To improve this area, we've added disks parameters, which are
1024
customisable at cluster and node group level, and which allow to
1025
specify various parameters for disks (DRBD has the most parameters
1026
currently), for example:
1027

    
1028
- DRBD resync algorithm and parameters (e.g. speed)
1029
- the default VG for meta-data volumes for DRBD
1030
- number of stripes for LVM (plain disk template)
1031
- the RBD pool
1032

    
1033
These parameters can be modified via ``gnt-cluster modify -D โ€ฆ`` and
1034
``gnt-group modify -D โ€ฆ``, and are used at either instance creation (in
1035
case of LVM stripes, for example) or at disk โ€œactivationโ€ time
1036
(e.g. resync speed).
1037

    
1038
Rados block device support
1039
++++++++++++++++++++++++++
1040

    
1041
A Rados (http://ceph.com/wiki/Rbd) storage backend has been added,
1042
denoted by the ``rbd`` disk template type. This is considered
1043
experimental, feedback is welcome. For details on configuring it, see
1044
the :doc:`install` document and the :manpage:`gnt-cluster(8)` man page.
1045

    
1046
Master IP setup
1047
+++++++++++++++
1048

    
1049
The existing master IP functionality works well only in simple setups (a
1050
single network shared by all nodes); however, if nodes belong to
1051
different networks, then the ``/32`` setup and lack of routing
1052
information is not enough.
1053

    
1054
To allow the master IP to function well in more complex cases, the
1055
system was reworked as follows:
1056

    
1057
- a master IP netmask setting has been added
1058
- the master IP activation/turn-down code was moved from the node daemon
1059
  to a separate script
1060
- whether to run the Ganeti-supplied master IP script or a user-supplied
1061
  on is a ``gnt-cluster init`` setting
1062

    
1063
Details about the location of the standard and custom setup scripts are
1064
in the man page :manpage:`gnt-cluster(8)`; for information about the
1065
setup script protocol, look at the Ganeti-supplied script.
1066

    
1067
SPICE support
1068
+++++++++++++
1069

    
1070
The `SPICE <http://www.linux-kvm.org/page/SPICE>`_ support has been
1071
improved.
1072

    
1073
It is now possible to use TLS-protected connections, and when renewing
1074
or changing the cluster certificates (via ``gnt-cluster renew-crypto``,
1075
it is now possible to specify spice or spice CA certificates. Also, it
1076
is possible to configure a password for SPICE sessions via the
1077
hypervisor parameter ``spice_password_file``.
1078

    
1079
There are also new parameters to control the compression and streaming
1080
options (e.g. ``spice_image_compression``, ``spice_streaming_video``,
1081
etc.). For details, see the man page :manpage:`gnt-instance(8)` and look
1082
for the spice parameters.
1083

    
1084
Lastly, it is now possible to see the SPICE connection information via
1085
``gnt-instance console``.
1086

    
1087
OVF converter
1088
+++++++++++++
1089

    
1090
A new tool (``tools/ovfconverter``) has been added that supports
1091
conversion between Ganeti and the `Open Virtualization Format
1092
<http://en.wikipedia.org/wiki/Open_Virtualization_Format>`_ (both to and
1093
from).
1094

    
1095
This relies on the ``qemu-img`` tool to convert the disk formats, so the
1096
actual compatibility with other virtualization solutions depends on it.
1097

    
1098
Confd daemon changes
1099
++++++++++++++++++++
1100

    
1101
The configuration query daemon (``ganeti-confd``) is now optional, and
1102
has been rewritten in Haskell; whether to use the daemon at all, use the
1103
Python (default) or the Haskell version is selectable at configure time
1104
via the ``--enable-confd`` parameter, which can take one of the
1105
``haskell``, ``python`` or ``no`` values. If not used, disabling the
1106
daemon will result in a smaller footprint; for larger systems, we
1107
welcome feedback on the Haskell version which might become the default
1108
in future versions.
1109

    
1110
If you want to use ``gnt-node list-drbd`` you need to have the Haskell
1111
daemon running. The Python version doesn't implement the new call.
1112

    
1113

    
1114
User interface changes
1115
~~~~~~~~~~~~~~~~~~~~~~
1116

    
1117
We have replaced the ``--disks`` option of ``gnt-instance
1118
replace-disks`` with a more flexible ``--disk`` option, which allows
1119
adding and removing disks at arbitrary indices (Issue 188). Furthermore,
1120
disk size and mode can be changed upon recreation (via ``gnt-instance
1121
recreate-disks``, which accepts the same ``--disk`` option).
1122

    
1123
As many people are used to a ``show`` command, we have added that as an
1124
alias to ``info`` on all ``gnt-*`` commands.
1125

    
1126
The ``gnt-instance grow-disk`` command has a new mode in which it can
1127
accept the target size of the disk, instead of the delta; this can be
1128
more safe since two runs in absolute mode will be idempotent, and
1129
sometimes it's also easier to specify the desired size directly.
1130

    
1131
Also the handling of instances with regard to offline secondaries has
1132
been improved. Instance operations should not fail because one of it's
1133
secondary nodes is offline, even though it's safe to proceed.
1134

    
1135
A new command ``list-drbd`` has been added to the ``gnt-node`` script to
1136
support debugging of DRBD issues on nodes. It provides a mapping of DRBD
1137
minors to instance name.
1138

    
1139
API changes
1140
~~~~~~~~~~~
1141

    
1142
RAPI coverage has improved, with (for example) new resources for
1143
recreate-disks, node power-cycle, etc.
1144

    
1145
Compatibility
1146
~~~~~~~~~~~~~
1147

    
1148
There is partial support for ``xl`` in the Xen hypervisor; feedback is
1149
welcome.
1150

    
1151
Python 2.7 is better supported, and after Ganeti 2.6 we will investigate
1152
whether to still support Python 2.4 or move to Python 2.6 as minimum
1153
required version.
1154

    
1155
Support for Fedora has been slightly improved; the provided example
1156
init.d script should work better on it and the INSTALL file should
1157
document the needed dependencies.
1158

    
1159
Internal changes
1160
~~~~~~~~~~~~~~~~
1161

    
1162
The deprecated ``QueryLocks`` LUXI request has been removed. Use
1163
``Query(what=QR_LOCK, ...)`` instead.
1164

    
1165
The LUXI requests :pyeval:`luxi.REQ_QUERY_JOBS`,
1166
:pyeval:`luxi.REQ_QUERY_INSTANCES`, :pyeval:`luxi.REQ_QUERY_NODES`,
1167
:pyeval:`luxi.REQ_QUERY_GROUPS`, :pyeval:`luxi.REQ_QUERY_EXPORTS` and
1168
:pyeval:`luxi.REQ_QUERY_TAGS` are deprecated and will be removed in a
1169
future version. :pyeval:`luxi.REQ_QUERY` should be used instead.
1170

    
1171
RAPI client: ``CertificateError`` now derives from
1172
``GanetiApiError``. This should make it more easy to handle Ganeti
1173
errors.
1174

    
1175
Deprecation warnings due to PyCrypto/paramiko import in
1176
``tools/setup-ssh`` have been silenced, as usually they are safe; please
1177
make sure to run an up-to-date paramiko version, if you use this tool.
1178

    
1179
The QA scripts now depend on Python 2.5 or above (the main code base
1180
still works with Python 2.4).
1181

    
1182
The configuration file (``config.data``) is now written without
1183
indentation for performance reasons; if you want to edit it, it can be
1184
re-formatted via ``tools/fmtjson``.
1185

    
1186
A number of bugs has been fixed in the cluster merge tool.
1187

    
1188
``x509`` certification verification (used in import-export) has been
1189
changed to allow the same clock skew as permitted by the cluster
1190
verification. This will remove some rare but hard to diagnose errors in
1191
import-export.
1192

    
1193

    
1194
Version 2.6.0 rc4
1195
-----------------
1196

    
1197
*(Released Thu, 19 Jul 2012)*
1198

    
1199
Very few changes from rc4 to the final release, only bugfixes:
1200

    
1201
- integrated fixes from release 2.5.2 (fix general boot flag for KVM
1202
  instance, fix CDROM booting for KVM instances)
1203
- fixed node group modification of node parameters
1204
- fixed issue in LUClusterVerifyGroup with multi-group clusters
1205
- fixed generation of bash completion to ensure a stable ordering
1206
- fixed a few typos
1207

    
1208

    
1209
Version 2.6.0 rc3
1210
-----------------
1211

    
1212
*(Released Fri, 13 Jul 2012)*
1213

    
1214
Third release candidate for 2.6. The following changes were done from
1215
rc3 to rc4:
1216

    
1217
- Fixed ``UpgradeConfig`` w.r.t. to disk parameters on disk objects.
1218
- Fixed an inconsistency in the LUXI protocol with the provided
1219
  arguments (NOT backwards compatible)
1220
- Fixed a bug with node groups ipolicy where ``min`` was greater than
1221
  the cluster ``std`` value
1222
- Implemented a new ``gnt-node list-drbd`` call to list DRBD minors for
1223
  easier instance debugging on nodes (requires ``hconfd`` to work)
1224

    
1225

    
1226
Version 2.6.0 rc2
1227
-----------------
1228

    
1229
*(Released Tue, 03 Jul 2012)*
1230

    
1231
Second release candidate for 2.6. The following changes were done from
1232
rc2 to rc3:
1233

    
1234
- Fixed ``gnt-cluster verify`` regarding ``master-ip-script`` on non
1235
  master candidates
1236
- Fixed a RAPI regression on missing beparams/memory
1237
- Fixed redistribution of files on offline nodes
1238
- Added possibility to run activate-disks even though secondaries are
1239
  offline. With this change it relaxes also the strictness on some other
1240
  commands which use activate disks internally:
1241
  * ``gnt-instance start|reboot|rename|backup|export``
1242
- Made it possible to remove safely an instance if its secondaries are
1243
  offline
1244
- Made it possible to reinstall even though secondaries are offline
1245

    
1246

    
1247
Version 2.6.0 rc1
1248
-----------------
1249

    
1250
*(Released Mon, 25 Jun 2012)*
1251

    
1252
First release candidate for 2.6. The following changes were done from
1253
rc1 to rc2:
1254

    
1255
- Fixed bugs with disk parameters and ``rbd`` templates as well as
1256
  ``instance_os_add``
1257
- Made ``gnt-instance modify`` more consistent regarding new NIC/Disk
1258
  behaviour. It supports now the modify operation
1259
- ``hcheck`` implemented to analyze cluster health and possibility of
1260
  improving health by rebalance
1261
- ``hbal`` has been improved in dealing with split instances
1262

    
1263

    
1264
Version 2.6.0 beta2
1265
-------------------
1266

    
1267
*(Released Mon, 11 Jun 2012)*
1268

    
1269
Second beta release of 2.6. The following changes were done from beta2
1270
to rc1:
1271

    
1272
- Fixed ``daemon-util`` with non-root user models
1273
- Fixed creation of plain instances with ``--no-wait-for-sync``
1274
- Fix wrong iv_names when running ``cfgupgrade``
1275
- Export more information in RAPI group queries
1276
- Fixed bug when changing instance network interfaces
1277
- Extended burnin to do NIC changes
1278
- query: Added ``<``, ``>``, ``<=``, ``>=`` comparison operators
1279
- Changed default for DRBD barriers
1280
- Fixed DRBD error reporting for syncer rate
1281
- Verify the options on disk parameters
1282

    
1283
And of course various fixes to documentation and improved unittests and
1284
QA.
1285

    
1286

    
1287
Version 2.6.0 beta1
1288
-------------------
1289

    
1290
*(Released Wed, 23 May 2012)*
1291

    
1292
First beta release of 2.6. The following changes were done from beta1 to
1293
beta2:
1294

    
1295
- integrated patch for distributions without ``start-stop-daemon``
1296
- adapted example init.d script to work on Fedora
1297
- fixed log handling in Haskell daemons
1298
- adapted checks in the watcher for pycurl linked against libnss
1299
- add partial support for ``xl`` instead of ``xm`` for Xen
1300
- fixed a type issue in cluster verification
1301
- fixed ssconf handling in the Haskell code (was breaking confd in IPv6
1302
  clusters)
1303

    
1304
Plus integrated fixes from the 2.5 branch:
1305

    
1306
- fixed ``kvm-ifup`` to use ``/bin/bash``
1307
- fixed parallel build failures
1308
- KVM live migration when using a custom keymap
1309

    
1310

    
1311
Version 2.5.2
1312
-------------
1313

    
1314
*(Released Tue, 24 Jul 2012)*
1315

    
1316
A small bugfix release, with no new features:
1317

    
1318
- fixed bash-isms in kvm-ifup, for compatibility with systems which use a
1319
  different default shell (e.g. Debian, Ubuntu)
1320
- fixed KVM startup and live migration with a custom keymap (fixes Issue
1321
  243 and Debian bug #650664)
1322
- fixed compatibility with KVM versions that don't support multiple boot
1323
  devices (fixes Issue 230 and Debian bug #624256)
1324

    
1325
Additionally, a few fixes were done to the build system (fixed parallel
1326
build failures) and to the unittests (fixed race condition in test for
1327
FileID functions, and the default enable/disable mode for QA test is now
1328
customisable).
1329

    
1330

    
1331
Version 2.5.1
1332
-------------
1333

    
1334
*(Released Fri, 11 May 2012)*
1335

    
1336
A small bugfix release.
1337

    
1338
The main issues solved are on the topic of compatibility with newer LVM
1339
releases:
1340

    
1341
- fixed parsing of ``lv_attr`` field
1342
- adapted to new ``vgreduce --removemissing`` behaviour where sometimes
1343
  the ``--force`` flag is needed
1344

    
1345
Also on the topic of compatibility, ``tools/lvmstrap`` has been changed
1346
to accept kernel 3.x too (was hardcoded to 2.6.*).
1347

    
1348
A regression present in 2.5.0 that broke handling (in the gnt-* scripts)
1349
of hook results and that also made display of other errors suboptimal
1350
was fixed; the code behaves now like 2.4 and earlier.
1351

    
1352
Another change in 2.5, the cleanup of the OS scripts environment, is too
1353
aggressive: it removed even the ``PATH`` variable, which requires the OS
1354
scripts to *always* need to export it. Since this is a bit too strict,
1355
we now export a minimal PATH, the same that we export for hooks.
1356

    
1357
The fix for issue 201 (Preserve bridge MTU in KVM ifup script) was
1358
integrated into this release.
1359

    
1360
Finally, a few other miscellaneous changes were done (no new features,
1361
just small improvements):
1362

    
1363
- Fix ``gnt-group --help`` display
1364
- Fix hardcoded Xen kernel path
1365
- Fix grow-disk handling of invalid units
1366
- Update synopsis for ``gnt-cluster repair-disk-sizes``
1367
- Accept both PUT and POST in noded (makes future upgrade to 2.6 easier)
1368

    
1369

    
1370
Version 2.5.0
1371
-------------
1372

    
1373
*(Released Thu, 12 Apr 2012)*
1374

    
1375
Incompatible/important changes and bugfixes
1376
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1377

    
1378
- The default of the ``/2/instances/[instance_name]/rename`` RAPI
1379
  resource's ``ip_check`` parameter changed from ``True`` to ``False``
1380
  to match the underlying LUXI interface.
1381
- The ``/2/nodes/[node_name]/evacuate`` RAPI resource was changed to use
1382
  body parameters, see :doc:`RAPI documentation <rapi>`. The server does
1383
  not maintain backwards-compatibility as the underlying operation
1384
  changed in an incompatible way. The RAPI client can talk to old
1385
  servers, but it needs to be told so as the return value changed.
1386
- When creating file-based instances via RAPI, the ``file_driver``
1387
  parameter no longer defaults to ``loop`` and must be specified.
1388
- The deprecated ``bridge`` NIC parameter is no longer supported. Use
1389
  ``link`` instead.
1390
- Support for the undocumented and deprecated RAPI instance creation
1391
  request format version 0 has been dropped. Use version 1, supported
1392
  since Ganeti 2.1.3 and :doc:`documented <rapi>`, instead.
1393
- Pyparsing 1.4.6 or above is required, see :doc:`installation
1394
  documentation <install>`.
1395
- The "cluster-verify" hooks are now executed per group by the
1396
  ``OP_CLUSTER_VERIFY_GROUP`` opcode. This maintains the same behavior
1397
  if you just run ``gnt-cluster verify``, which generates one opcode per
1398
  group.
1399
- The environment as passed to the OS scripts is cleared, and thus no
1400
  environment variables defined in the node daemon's environment will be
1401
  inherited by the scripts.
1402
- The :doc:`iallocator <iallocator>` mode ``multi-evacuate`` has been
1403
  deprecated.
1404
- :doc:`New iallocator modes <design-multi-reloc>` have been added to
1405
  support operations involving multiple node groups.
1406
- Offline nodes are ignored when failing over an instance.
1407
- Support for KVM version 1.0, which changed the version reporting format
1408
  from 3 to 2 digits.
1409
- TCP/IP ports used by DRBD disks are returned to a pool upon instance
1410
  removal.
1411
- ``Makefile`` is now compatible with Automake 1.11.2
1412
- Includes all bugfixes made in the 2.4 series
1413

    
1414
New features
1415
~~~~~~~~~~~~
1416

    
1417
- The ganeti-htools project has been merged into the ganeti-core source
1418
  tree and will be built as part of Ganeti (see :doc:`install-quick`).
1419
- Implemented support for :doc:`shared storage <design-shared-storage>`.
1420
- Add support for disks larger than 2 TB in ``lvmstrap`` by supporting
1421
  GPT-style partition tables (requires `parted
1422
  <http://www.gnu.org/s/parted/>`_).
1423
- Added support for floppy drive and 2nd CD-ROM drive in KVM hypervisor.
1424
- Allowed adding tags on instance creation.
1425
- Export instance tags to hooks (``INSTANCE_TAGS``, see :doc:`hooks`)
1426
- Allow instances to be started in a paused state, enabling the user to
1427
  see the complete console output on boot using the console.
1428
- Added new hypervisor flag to control default reboot behaviour
1429
  (``reboot_behavior``).
1430
- Added support for KVM keymaps (hypervisor parameter ``keymap``).
1431
- Improved out-of-band management support:
1432

    
1433
  - Added ``gnt-node health`` command reporting the health status of
1434
    nodes.
1435
  - Added ``gnt-node power`` command to manage power status of nodes.
1436
  - Added command for emergency power-off (EPO), ``gnt-cluster epo``.
1437

    
1438
- Instance migration can fall back to failover if instance is not
1439
  running.
1440
- Filters can be used when listing nodes, instances, groups and locks;
1441
  see :manpage:`ganeti(7)` manpage.
1442
- Added post-execution status as variables to :doc:`hooks <hooks>`
1443
  environment.
1444
- Instance tags are exported/imported together with the instance.
1445
- When given an explicit job ID, ``gnt-job info`` will work for archived
1446
  jobs.
1447
- Jobs can define dependencies on other jobs (not yet supported via
1448
  RAPI or command line, but used by internal commands and usable via
1449
  LUXI).
1450

    
1451
  - Lock monitor (``gnt-debug locks``) shows jobs waiting for
1452
    dependencies.
1453

    
1454
- Instance failover is now available as a RAPI resource
1455
  (``/2/instances/[instance_name]/failover``).
1456
- ``gnt-instance info`` defaults to static information if primary node
1457
  is offline.
1458
- Opcodes have a new ``comment`` attribute.
1459
- Added basic SPICE support to KVM hypervisor.
1460
- ``tools/ganeti-listrunner`` allows passing of arguments to executable.
1461

    
1462
Node group improvements
1463
~~~~~~~~~~~~~~~~~~~~~~~
1464

    
1465
- ``gnt-cluster verify`` has been modified to check groups separately,
1466
  thereby improving performance.
1467
- Node group support has been added to ``gnt-cluster verify-disks``,
1468
  which now operates per node group.
1469
- Watcher has been changed to work better with node groups.
1470

    
1471
  - One process and state file per node group.
1472
  - Slow watcher in one group doesn't block other group's watcher.
1473

    
1474
- Added new command, ``gnt-group evacuate``, to move all instances in a
1475
  node group to other groups.
1476
- Added ``gnt-instance change-group`` to move an instance to another
1477
  node group.
1478
- ``gnt-cluster command`` and ``gnt-cluster copyfile`` now support
1479
  per-group operations.
1480
- Node groups can be tagged.
1481
- Some operations switch from an exclusive to a shared lock as soon as
1482
  possible.
1483
- Instance's primary and secondary nodes' groups are now available as
1484
  query fields (``pnode.group``, ``pnode.group.uuid``, ``snodes.group``
1485
  and ``snodes.group.uuid``).
1486

    
1487
Misc
1488
~~~~
1489

    
1490
- Numerous updates to documentation and manpages.
1491

    
1492
  - :doc:`RAPI <rapi>` documentation now has detailed parameter
1493
    descriptions.
1494
  - Some opcode/job results are now also documented, see :doc:`RAPI
1495
    <rapi>`.
1496

    
1497
- A lockset's internal lock is now also visible in lock monitor.
1498
- Log messages from job queue workers now contain information about the
1499
  opcode they're processing.
1500
- ``gnt-instance console`` no longer requires the instance lock.
1501
- A short delay when waiting for job changes reduces the number of LUXI
1502
  requests significantly.
1503
- DRBD metadata volumes are overwritten with zeros during disk creation.
1504
- Out-of-band commands no longer acquire the cluster lock in exclusive
1505
  mode.
1506
- ``devel/upload`` now uses correct permissions for directories.
1507

    
1508

    
1509
Version 2.5.0 rc6
1510
-----------------
1511

    
1512
*(Released Fri, 23 Mar 2012)*
1513

    
1514
This was the sixth release candidate of the 2.5 series.
1515

    
1516

    
1517
Version 2.5.0 rc5
1518
-----------------
1519

    
1520
*(Released Mon, 9 Jan 2012)*
1521

    
1522
This was the fifth release candidate of the 2.5 series.
1523

    
1524

    
1525
Version 2.5.0 rc4
1526
-----------------
1527

    
1528
*(Released Thu, 27 Oct 2011)*
1529

    
1530
This was the fourth release candidate of the 2.5 series.
1531

    
1532

    
1533
Version 2.5.0 rc3
1534
-----------------
1535

    
1536
*(Released Wed, 26 Oct 2011)*
1537

    
1538
This was the third release candidate of the 2.5 series.
1539

    
1540

    
1541
Version 2.5.0 rc2
1542
-----------------
1543

    
1544
*(Released Tue, 18 Oct 2011)*
1545

    
1546
This was the second release candidate of the 2.5 series.
1547

    
1548

    
1549
Version 2.5.0 rc1
1550
-----------------
1551

    
1552
*(Released Tue, 4 Oct 2011)*
1553

    
1554
This was the first release candidate of the 2.5 series.
1555

    
1556

    
1557
Version 2.5.0 beta3
1558
-------------------
1559

    
1560
*(Released Wed, 31 Aug 2011)*
1561

    
1562
This was the third beta release of the 2.5 series.
1563

    
1564

    
1565
Version 2.5.0 beta2
1566
-------------------
1567

    
1568
*(Released Mon, 22 Aug 2011)*
1569

    
1570
This was the second beta release of the 2.5 series.
1571

    
1572

    
1573
Version 2.5.0 beta1
1574
-------------------
1575

    
1576
*(Released Fri, 12 Aug 2011)*
1577

    
1578
This was the first beta release of the 2.5 series.
1579

    
1580

    
1581
Version 2.4.5
1582
-------------
1583

    
1584
*(Released Thu, 27 Oct 2011)*
1585

    
1586
- Fixed bug when parsing command line parameter values ending in
1587
  backslash
1588
- Fixed assertion error after unclean master shutdown
1589
- Disable HTTP client pool for RPC, significantly reducing memory usage
1590
  of master daemon
1591
- Fixed queue archive creation with wrong permissions
1592

    
1593

    
1594
Version 2.4.4
1595
-------------
1596

    
1597
*(Released Tue, 23 Aug 2011)*
1598

    
1599
Small bug-fixes:
1600

    
1601
- Fixed documentation for importing with ``--src-dir`` option
1602
- Fixed a bug in ``ensure-dirs`` with queue/archive permissions
1603
- Fixed a parsing issue with DRBD 8.3.11 in the Linux kernel
1604

    
1605

    
1606
Version 2.4.3
1607
-------------
1608

    
1609
*(Released Fri, 5 Aug 2011)*
1610

    
1611
Many bug-fixes and a few small features:
1612

    
1613
- Fixed argument order in ``ReserveLV`` and ``ReserveMAC`` which caused
1614
  issues when you tried to add an instance with two MAC addresses in one
1615
  request
1616
- KVM: fixed per-instance stored UID value
1617
- KVM: configure bridged NICs at migration start
1618
- KVM: Fix a bug where instance will not start with never KVM versions
1619
  (>= 0.14)
1620
- Added OS search path to ``gnt-cluster info``
1621
- Fixed an issue with ``file_storage_dir`` where you were forced to
1622
  provide an absolute path, but the documentation states it is a
1623
  relative path, the documentation was right
1624
- Added a new parameter to instance stop/start called ``--no-remember``
1625
  that will make the state change to not be remembered
1626
- Implemented ``no_remember`` at RAPI level
1627
- Improved the documentation
1628
- Node evacuation: don't call IAllocator if node is already empty
1629
- Fixed bug in DRBD8 replace disks on current nodes
1630
- Fixed bug in recreate-disks for DRBD instances
1631
- Moved assertion checking locks in ``gnt-instance replace-disks``
1632
  causing it to abort with not owning the right locks for some situation
1633
- Job queue: Fixed potential race condition when cancelling queued jobs
1634
- Fixed off-by-one bug in job serial generation
1635
- ``gnt-node volumes``: Fix instance names
1636
- Fixed aliases in bash completion
1637
- Fixed a bug in reopening log files after being sent a SIGHUP
1638
- Added a flag to burnin to allow specifying VCPU count
1639
- Bugfixes to non-root Ganeti configuration
1640

    
1641

    
1642
Version 2.4.2
1643
-------------
1644

    
1645
*(Released Thu, 12 May 2011)*
1646

    
1647
Many bug-fixes and a few new small features:
1648

    
1649
- Fixed a bug related to log opening failures
1650
- Fixed a bug in instance listing with orphan instances
1651
- Fixed a bug which prevented resetting the cluster-level node parameter
1652
  ``oob_program`` to the default
1653
- Many fixes related to the ``cluster-merge`` tool
1654
- Fixed a race condition in the lock monitor, which caused failures
1655
  during (at least) creation of many instances in parallel
1656
- Improved output for gnt-job info
1657
- Removed the quiet flag on some ssh calls which prevented debugging
1658
  failures
1659
- Improved the N+1 failure messages in cluster verify by actually
1660
  showing the memory values (needed and available)
1661
- Increased lock attempt timeouts so that when executing long operations
1662
  (e.g. DRBD replace-disks) other jobs do not enter 'blocking acquire'
1663
  too early and thus prevent the use of the 'fair' mechanism
1664
- Changed instance query data (``gnt-instance info``) to not acquire
1665
  locks unless needed, thus allowing its use on locked instance if only
1666
  static information is asked for
1667
- Improved behaviour with filesystems that do not support rename on an
1668
  opened file
1669
- Fixed the behaviour of ``prealloc_wipe_disks`` cluster parameter which
1670
  kept locks on all nodes during the wipe, which is unneeded
1671
- Fixed ``gnt-watcher`` handling of errors during hooks execution
1672
- Fixed bug in ``prealloc_wipe_disks`` with small disk sizes (less than
1673
  10GiB) which caused the wipe to fail right at the end in some cases
1674
- Fixed master IP activation when doing master failover with no-voting
1675
- Fixed bug in ``gnt-node add --readd`` which allowed the re-adding of
1676
  the master node itself
1677
- Fixed potential data-loss in under disk full conditions, where Ganeti
1678
  wouldn't check correctly the return code and would consider
1679
  partially-written files 'correct'
1680
- Fixed bug related to multiple VGs and DRBD disk replacing
1681
- Added new disk parameter ``metavg`` that allows placement of the meta
1682
  device for DRBD in a different volume group
1683
- Fixed error handling in the node daemon when the system libc doesn't
1684
  have major number 6 (i.e. if ``libc.so.6`` is not the actual libc)
1685
- Fixed lock release during replace-disks, which kept cluster-wide locks
1686
  when doing disk replaces with an iallocator script
1687
- Added check for missing bridges in cluster verify
1688
- Handle EPIPE errors while writing to the terminal better, so that
1689
  piping the output to e.g. ``less`` doesn't cause a backtrace
1690
- Fixed rare case where a ^C during Luxi calls could have been
1691
  interpreted as server errors, instead of simply terminating
1692
- Fixed a race condition in LUGroupAssignNodes (``gnt-group
1693
  assign-nodes``)
1694
- Added a few more parameters to the KVM hypervisor, allowing a second
1695
  CDROM, custom disk type for CDROMs and a floppy image
1696
- Removed redundant message in instance rename when the name is given
1697
  already as a FQDN
1698
- Added option to ``gnt-instance recreate-disks`` to allow creating the
1699
  disks on new nodes, allowing recreation when the original instance
1700
  nodes are completely gone
1701
- Added option when converting disk templates to DRBD to skip waiting
1702
  for the resync, in order to make the instance available sooner
1703
- Added two new variables to the OS scripts environment (containing the
1704
  instance's nodes)
1705
- Made the root_path and optional parameter for the xen-pvm hypervisor,
1706
  to allow use of ``pvgrub`` as bootloader
1707
- Changed the instance memory modifications to only check out-of-memory
1708
  conditions on memory increases, and turned the secondary node warnings
1709
  into errors (they can still be overridden via ``--force``)
1710
- Fixed the handling of a corner case when the Python installation gets
1711
  corrupted (e.g. a bad disk) while ganeti-noded is running and we try
1712
  to execute a command that doesn't exist
1713
- Fixed a bug in ``gnt-instance move`` (LUInstanceMove) when the primary
1714
  node of the instance returned failures during instance shutdown; this
1715
  adds the option ``--ignore-consistency`` to gnt-instance move
1716

    
1717
And as usual, various improvements to the error messages, documentation
1718
and man pages.
1719

    
1720

    
1721
Version 2.4.1
1722
-------------
1723

    
1724
*(Released Wed, 09 Mar 2011)*
1725

    
1726
Emergency bug-fix release. ``tools/cfgupgrade`` was broken and overwrote
1727
the RAPI users file if run twice (even with ``--dry-run``).
1728

    
1729
The release fixes that bug (nothing else changed).
1730

    
1731

    
1732
Version 2.4.0
1733
-------------
1734

    
1735
*(Released Mon, 07 Mar 2011)*
1736

    
1737
Final 2.4.0 release. Just a few small fixes:
1738

    
1739
- Fixed RAPI node evacuate
1740
- Fixed the kvm-ifup script
1741
- Fixed internal error handling for special job cases
1742
- Updated man page to specify the escaping feature for options
1743

    
1744

    
1745
Version 2.4.0 rc3
1746
-----------------
1747

    
1748
*(Released Mon, 28 Feb 2011)*
1749

    
1750
A critical fix for the ``prealloc_wipe_disks`` feature: it is possible
1751
that this feature wiped the disks of the wrong instance, leading to loss
1752
of data.
1753

    
1754
Other changes:
1755

    
1756
- Fixed title of query field containing instance name
1757
- Expanded the glossary in the documentation
1758
- Fixed one unittest (internal issue)
1759

    
1760

    
1761
Version 2.4.0 rc2
1762
-----------------
1763

    
1764
*(Released Mon, 21 Feb 2011)*
1765

    
1766
A number of bug fixes plus just a couple functionality changes.
1767

    
1768
On the user-visible side, the ``gnt-* list`` command output has changed
1769
with respect to "special" field states. The current rc1 style of display
1770
can be re-enabled by passing a new ``--verbose`` (``-v``) flag, but in
1771
the default output mode special fields states are displayed as follows:
1772

    
1773
- Offline resource: ``*``
1774
- Unavailable/not applicable: ``-``
1775
- Data missing (RPC failure): ``?``
1776
- Unknown field: ``??``
1777

    
1778
Another user-visible change is the addition of ``--force-join`` to
1779
``gnt-node add``.
1780

    
1781
As for bug fixes:
1782

    
1783
- ``tools/cluster-merge`` has seen many fixes and is now enabled again
1784
- Fixed regression in RAPI/instance reinstall where all parameters were
1785
  required (instead of optional)
1786
- Fixed ``gnt-cluster repair-disk-sizes``, was broken since Ganeti 2.2
1787
- Fixed iallocator usage (offline nodes were not considered offline)
1788
- Fixed ``gnt-node list`` with respect to non-vm_capable nodes
1789
- Fixed hypervisor and OS parameter validation with respect to
1790
  non-vm_capable nodes
1791
- Fixed ``gnt-cluster verify`` with respect to offline nodes (mostly
1792
  cosmetic)
1793
- Fixed ``tools/listrunner`` with respect to agent-based usage
1794

    
1795

    
1796
Version 2.4.0 rc1
1797
-----------------
1798

    
1799
*(Released Fri,  4 Feb 2011)*
1800

    
1801
Many changes and fixes since the beta1 release. While there were some
1802
internal changes, the code has been mostly stabilised for the RC
1803
release.
1804

    
1805
Note: the dumb allocator was removed in this release, as it was not kept
1806
up-to-date with the IAllocator protocol changes. It is recommended to
1807
use the ``hail`` command from the ganeti-htools package.
1808

    
1809
Note: the 2.4 and up versions of Ganeti are not compatible with the
1810
0.2.x branch of ganeti-htools. You need to upgrade to
1811
ganeti-htools-0.3.0 (or later).
1812

    
1813
Regressions fixed from 2.3
1814
~~~~~~~~~~~~~~~~~~~~~~~~~~
1815

    
1816
- Fixed the ``gnt-cluster verify-disks`` command
1817
- Made ``gnt-cluster verify-disks`` work in parallel (as opposed to
1818
  serially on nodes)
1819
- Fixed disk adoption breakage
1820
- Fixed wrong headers in instance listing for field aliases
1821

    
1822
Other bugs fixed
1823
~~~~~~~~~~~~~~~~
1824

    
1825
- Fixed corner case in KVM handling of NICs
1826
- Fixed many cases of wrong handling of non-vm_capable nodes
1827
- Fixed a bug where a missing instance symlink was not possible to
1828
  recreate with any ``gnt-*`` command (now ``gnt-instance
1829
  activate-disks`` does it)
1830
- Fixed the volume group name as reported by ``gnt-cluster
1831
  verify-disks``
1832
- Increased timeouts for the import-export code, hopefully leading to
1833
  fewer aborts due network or instance timeouts
1834
- Fixed bug in ``gnt-node list-storage``
1835
- Fixed bug where not all daemons were started on cluster
1836
  initialisation, but only at the first watcher run
1837
- Fixed many bugs in the OOB implementation
1838
- Fixed watcher behaviour in presence of instances with offline
1839
  secondaries
1840
- Fixed instance list output for instances running on the wrong node
1841
- a few fixes to the cluster-merge tool, but it still cannot merge
1842
  multi-node groups (currently it is not recommended to use this tool)
1843

    
1844

    
1845
Improvements
1846
~~~~~~~~~~~~
1847

    
1848
- Improved network configuration for the KVM hypervisor
1849
- Added e1000 as a supported NIC for Xen-HVM
1850
- Improved the lvmstrap tool to also be able to use partitions, as
1851
  opposed to full disks
1852
- Improved speed of disk wiping (the cluster parameter
1853
  ``prealloc_wipe_disks``, so that it has a low impact on the total time
1854
  of instance creations
1855
- Added documentation for the OS parameters
1856
- Changed ``gnt-instance deactivate-disks`` so that it can work if the
1857
  hypervisor is not responding
1858
- Added display of blacklisted and hidden OS information in
1859
  ``gnt-cluster info``
1860
- Extended ``gnt-cluster verify`` to also validate hypervisor, backend,
1861
  NIC and node parameters, which might create problems with currently
1862
  invalid (but undetected) configuration files, but prevents validation
1863
  failures when unrelated parameters are modified
1864
- Changed cluster initialisation to wait for the master daemon to become
1865
  available
1866
- Expanded the RAPI interface:
1867

    
1868
  - Added config redistribution resource
1869
  - Added activation/deactivation of instance disks
1870
  - Added export of console information
1871

    
1872
- Implemented log file reopening on SIGHUP, which allows using
1873
  logrotate(8) for the Ganeti log files
1874
- Added a basic OOB helper script as an example
1875

    
1876

    
1877
Version 2.4.0 beta1
1878
-------------------
1879

    
1880
*(Released Fri, 14 Jan 2011)*
1881

    
1882
User-visible
1883
~~~~~~~~~~~~
1884

    
1885
- Fixed timezone issues when formatting timestamps
1886
- Added support for node groups, available via ``gnt-group`` and other
1887
  commands
1888
- Added out-of-band framework and management, see :doc:`design
1889
  document <design-oob>`
1890
- Removed support for roman numbers from ``gnt-node list`` and
1891
  ``gnt-instance list``.
1892
- Allowed modification of master network interface via ``gnt-cluster
1893
  modify --master-netdev``
1894
- Accept offline secondaries while shutting down instance disks
1895
- Added ``blockdev_prefix`` parameter to Xen PVM and HVM hypervisors
1896
- Added support for multiple LVM volume groups
1897
- Avoid sorting nodes for ``gnt-node list`` if specific nodes are
1898
  requested
1899
- Added commands to list available fields:
1900

    
1901
  - ``gnt-node list-fields``
1902
  - ``gnt-group list-fields``
1903
  - ``gnt-instance list-fields``
1904

    
1905
- Updated documentation and man pages
1906

    
1907
Integration
1908
~~~~~~~~~~~
1909

    
1910
- Moved ``rapi_users`` file into separate directory, now named
1911
  ``.../ganeti/rapi/users``, ``cfgupgrade`` moves the file and creates a
1912
  symlink
1913
- Added new tool for running commands on many machines,
1914
  ``tools/ganeti-listrunner``
1915
- Implemented more verbose result in ``OpInstanceConsole`` opcode, also
1916
  improving the ``gnt-instance console`` output
1917
- Allowed customisation of disk index separator at ``configure`` time
1918
- Export node group allocation policy to :doc:`iallocator <iallocator>`
1919
- Added support for non-partitioned md disks in ``lvmstrap``
1920
- Added script to gracefully power off KVM instances
1921
- Split ``utils`` module into smaller parts
1922
- Changed query operations to return more detailed information, e.g.
1923
  whether an information is unavailable due to an offline node. To use
1924
  this new functionality, the LUXI call ``Query`` must be used. Field
1925
  information is now stored by the master daemon and can be retrieved
1926
  using ``QueryFields``. Instances, nodes and groups can also be queried
1927
  using the new opcodes ``OpQuery`` and ``OpQueryFields`` (not yet
1928
  exposed via RAPI). The following commands make use of this
1929
  infrastructure change:
1930

    
1931
  - ``gnt-group list``
1932
  - ``gnt-group list-fields``
1933
  - ``gnt-node list``
1934
  - ``gnt-node list-fields``
1935
  - ``gnt-instance list``
1936
  - ``gnt-instance list-fields``
1937
  - ``gnt-debug locks``
1938

    
1939
Remote API
1940
~~~~~~~~~~
1941

    
1942
- New RAPI resources (see :doc:`rapi`):
1943

    
1944
  - ``/2/modify``
1945
  - ``/2/groups``
1946
  - ``/2/groups/[group_name]``
1947
  - ``/2/groups/[group_name]/assign-nodes``
1948
  - ``/2/groups/[group_name]/modify``
1949
  - ``/2/groups/[group_name]/rename``
1950
  - ``/2/instances/[instance_name]/disk/[disk_index]/grow``
1951

    
1952
- RAPI changes:
1953

    
1954
  - Implemented ``no_install`` for instance creation
1955
  - Implemented OS parameters for instance reinstallation, allowing
1956
    use of special settings on reinstallation (e.g. for preserving data)
1957

    
1958
Misc
1959
~~~~
1960

    
1961
- Added IPv6 support in import/export
1962
- Pause DRBD synchronization while wiping disks on instance creation
1963
- Updated unittests and QA scripts
1964
- Improved network parameters passed to KVM
1965
- Converted man pages from docbook to reStructuredText
1966

    
1967

    
1968
Version 2.3.1
1969
-------------
1970

    
1971
*(Released Mon, 20 Dec 2010)*
1972

    
1973
Released version 2.3.1~rc1 without any changes.
1974

    
1975

    
1976
Version 2.3.1 rc1
1977
-----------------
1978

    
1979
*(Released Wed, 1 Dec 2010)*
1980

    
1981
- impexpd: Disable OpenSSL compression in socat if possible (backport
1982
  from master, commit e90739d625b, see :doc:`installation guide
1983
  <install-quick>` for details)
1984
- Changed unittest coverage report to exclude test scripts
1985
- Added script to check version format
1986

    
1987

    
1988
Version 2.3.0
1989
-------------
1990

    
1991
*(Released Wed, 1 Dec 2010)*
1992

    
1993
Released version 2.3.0~rc1 without any changes.
1994

    
1995

    
1996
Version 2.3.0 rc1
1997
-----------------
1998

    
1999
*(Released Fri, 19 Nov 2010)*
2000

    
2001
A number of bugfixes and documentation updates:
2002

    
2003
- Update ganeti-os-interface documentation
2004
- Fixed a bug related to duplicate MACs or similar items which should be
2005
  unique
2006
- Fix breakage in OS state modify
2007
- Reinstall instance: disallow offline secondaries (fixes bug related to
2008
  OS changing but reinstall failing)
2009
- plus all the other fixes between 2.2.1 and 2.2.2
2010

    
2011

    
2012
Version 2.3.0 rc0
2013
-----------------
2014

    
2015
*(Released Tue, 2 Nov 2010)*
2016

    
2017
- Fixed clearing of the default iallocator using ``gnt-cluster modify``
2018
- Fixed master failover race with watcher
2019
- Fixed a bug in ``gnt-node modify`` which could lead to an inconsistent
2020
  configuration
2021
- Accept previously stopped instance for export with instance removal
2022
- Simplify and extend the environment variables for instance OS scripts
2023
- Added new node flags, ``master_capable`` and ``vm_capable``
2024
- Added optional instance disk wiping prior during allocation. This is a
2025
  cluster-wide option and can be set/modified using
2026
  ``gnt-cluster {init,modify} --prealloc-wipe-disks``.
2027
- Added IPv6 support, see :doc:`design document <design-2.3>` and
2028
  :doc:`install-quick`
2029
- Added a new watcher option (``--ignore-pause``)
2030
- Added option to ignore offline node on instance start/stop
2031
  (``--ignore-offline``)
2032
- Allow overriding OS parameters with ``gnt-instance reinstall``
2033
- Added ability to change node's secondary IP address using ``gnt-node
2034
  modify``
2035
- Implemented privilege separation for all daemons except
2036
  ``ganeti-noded``, see ``configure`` options
2037
- Complain if an instance's disk is marked faulty in ``gnt-cluster
2038
  verify``
2039
- Implemented job priorities (see ``ganeti(7)`` manpage)
2040
- Ignore failures while shutting down instances during failover from
2041
  offline node
2042
- Exit daemon's bootstrap process only once daemon is ready
2043
- Export more information via ``LUInstanceQuery``/remote API
2044
- Improved documentation, QA and unittests
2045
- RAPI daemon now watches ``rapi_users`` all the time and doesn't need a
2046
  restart if the file was created or changed
2047
- Added LUXI protocol version sent with each request and response,
2048
  allowing detection of server/client mismatches
2049
- Moved the Python scripts among gnt-* and ganeti-* into modules
2050
- Moved all code related to setting up SSH to an external script,
2051
  ``setup-ssh``
2052
- Infrastructure changes for node group support in future versions
2053

    
2054

    
2055
Version 2.2.2
2056
-------------
2057

    
2058
*(Released Fri, 19 Nov 2010)*
2059

    
2060
A few small bugs fixed, and some improvements to the build system:
2061

    
2062
- Fix documentation regarding conversion to drbd
2063
- Fix validation of parameters in cluster modify (``gnt-cluster modify
2064
  -B``)
2065
- Fix error handling in node modify with multiple changes
2066
- Allow remote imports without checked names
2067

    
2068

    
2069
Version 2.2.1
2070
-------------
2071

    
2072
*(Released Tue, 19 Oct 2010)*
2073

    
2074
- Disable SSL session ID cache in RPC client
2075

    
2076

    
2077
Version 2.2.1 rc1
2078
-----------------
2079

    
2080
*(Released Thu, 14 Oct 2010)*
2081

    
2082
- Fix interaction between Curl/GnuTLS and the Python's HTTP server
2083
  (thanks Apollon Oikonomopoulos!), finally allowing the use of Curl
2084
  with GnuTLS
2085
- Fix problems with interaction between Curl and Python's HTTP server,
2086
  resulting in increased speed in many RPC calls
2087
- Improve our release script to prevent breakage with older aclocal and
2088
  Python 2.6
2089

    
2090

    
2091
Version 2.2.1 rc0
2092
-----------------
2093

    
2094
*(Released Thu, 7 Oct 2010)*
2095

    
2096
- Fixed issue 125, replace hardcoded "xenvg" in ``gnt-cluster`` with
2097
  value retrieved from master
2098
- Added support for blacklisted or hidden OS definitions
2099
- Added simple lock monitor (accessible via (``gnt-debug locks``)
2100
- Added support for -mem-path in KVM hypervisor abstraction layer
2101
- Allow overriding instance parameters in tool for inter-cluster
2102
  instance moves (``tools/move-instance``)
2103
- Improved opcode summaries (e.g. in ``gnt-job list``)
2104
- Improve consistency of OS listing by sorting it
2105
- Documentation updates
2106

    
2107

    
2108
Version 2.2.0.1
2109
---------------
2110

    
2111
*(Released Fri, 8 Oct 2010)*
2112

    
2113
- Rebuild with a newer autotools version, to fix python 2.6 compatibility
2114

    
2115

    
2116
Version 2.2.0
2117
-------------
2118

    
2119
*(Released Mon, 4 Oct 2010)*
2120

    
2121
- Fixed regression in ``gnt-instance rename``
2122

    
2123

    
2124
Version 2.2.0 rc2
2125
-----------------
2126

    
2127
*(Released Wed, 22 Sep 2010)*
2128

    
2129
- Fixed OS_VARIANT variable for OS scripts
2130
- Fixed cluster tag operations via RAPI
2131
- Made ``setup-ssh`` exit with non-zero code if an error occurred
2132
- Disabled RAPI CA checks in watcher
2133

    
2134

    
2135
Version 2.2.0 rc1
2136
-----------------
2137

    
2138
*(Released Mon, 23 Aug 2010)*
2139

    
2140
- Support DRBD versions of the format "a.b.c.d"
2141
- Updated manpages
2142
- Re-introduce support for usage from multiple threads in RAPI client
2143
- Instance renames and modify via RAPI
2144
- Work around race condition between processing and archival in job
2145
  queue
2146
- Mark opcodes following failed one as failed, too
2147
- Job field ``lock_status`` was removed due to difficulties making it
2148
  work with the changed job queue in Ganeti 2.2; a better way to monitor
2149
  locks is expected for a later 2.2.x release
2150
- Fixed dry-run behaviour with many commands
2151
- Support ``ssh-agent`` again when adding nodes
2152
- Many additional bugfixes
2153

    
2154

    
2155
Version 2.2.0 rc0
2156
-----------------
2157

    
2158
*(Released Fri, 30 Jul 2010)*
2159

    
2160
Important change: the internal RPC mechanism between Ganeti nodes has
2161
changed from using a home-grown http library (based on the Python base
2162
libraries) to use the PycURL library. This requires that PycURL is
2163
installed on nodes. Please note that on Debian/Ubuntu, PycURL is linked
2164
against GnuTLS by default. cURL's support for GnuTLS had known issues
2165
before cURL 7.21.0 and we recommend using the latest cURL release or
2166
linking against OpenSSL. Most other distributions already link PycURL
2167
and cURL against OpenSSL. The command::
2168

    
2169
  python -c 'import pycurl; print pycurl.version'
2170

    
2171
can be used to determine the libraries PycURL and cURL are linked
2172
against.
2173

    
2174
Other significant changes:
2175

    
2176
- Rewrote much of the internals of the job queue, in order to achieve
2177
  better parallelism; this decouples job query operations from the job
2178
  processing, and it should allow much nicer behaviour of the master
2179
  daemon under load, and it also has uncovered some long-standing bugs
2180
  related to the job serialisation (now fixed)
2181
- Added a default iallocator setting to the cluster parameters,
2182
  eliminating the need to always pass nodes or an iallocator for
2183
  operations that require selection of new node(s)
2184
- Added experimental support for the LXC virtualization method
2185
- Added support for OS parameters, which allows the installation of
2186
  instances to pass parameter to OS scripts in order to customise the
2187
  instance
2188
- Added a hypervisor parameter controlling the migration type (live or
2189
  non-live), since hypervisors have various levels of reliability; this
2190
  has renamed the 'live' parameter to 'mode'
2191
- Added a cluster parameter ``reserved_lvs`` that denotes reserved
2192
  logical volumes, meaning that cluster verify will ignore them and not
2193
  flag their presence as errors
2194
- The watcher will now reset the error count for failed instances after
2195
  8 hours, thus allowing self-healing if the problem that caused the
2196
  instances to be down/fail to start has cleared in the meantime
2197
- Added a cluster parameter ``drbd_usermode_helper`` that makes Ganeti
2198
  check for, and warn, if the drbd module parameter ``usermode_helper``
2199
  is not consistent with the cluster-wide setting; this is needed to
2200
  make diagnose easier of failed drbd creations
2201
- Started adding base IPv6 support, but this is not yet
2202
  enabled/available for use
2203
- Rename operations (cluster, instance) will now return the new name,
2204
  which is especially useful if a short name was passed in
2205
- Added support for instance migration in RAPI
2206
- Added a tool to pre-configure nodes for the SSH setup, before joining
2207
  them to the cluster; this will allow in the future a simplified model
2208
  for node joining (but not yet fully enabled in 2.2); this needs the
2209
  paramiko python library
2210
- Fixed handling of name-resolving errors
2211
- Fixed consistency of job results on the error path
2212
- Fixed master-failover race condition when executed multiple times in
2213
  sequence
2214
- Fixed many bugs related to the job queue (mostly introduced during the
2215
  2.2 development cycle, so not all are impacting 2.1)
2216
- Fixed instance migration with missing disk symlinks
2217
- Fixed handling of unknown jobs in ``gnt-job archive``
2218
- And many other small fixes/improvements
2219

    
2220
Internal changes:
2221

    
2222
- Enhanced both the unittest and the QA coverage
2223
- Switched the opcode validation to a generic model, and extended the
2224
  validation to all opcode parameters
2225
- Changed more parts of the code that write shell scripts to use the
2226
  same class for this
2227
- Switched the master daemon to use the asyncore library for the Luxi
2228
  server endpoint
2229

    
2230

    
2231
Version 2.2.0 beta0
2232
-------------------
2233

    
2234
*(Released Thu, 17 Jun 2010)*
2235

    
2236
- Added tool (``move-instance``) and infrastructure to move instances
2237
  between separate clusters (see :doc:`separate documentation
2238
  <move-instance>` and :doc:`design document <design-2.2>`)
2239
- Added per-request RPC timeout
2240
- RAPI now requires a Content-Type header for requests with a body (e.g.
2241
  ``PUT`` or ``POST``) which must be set to ``application/json`` (see
2242
  :rfc:`2616` (HTTP/1.1), section 7.2.1)
2243
- ``ganeti-watcher`` attempts to restart ``ganeti-rapi`` if RAPI is not
2244
  reachable
2245
- Implemented initial support for running Ganeti daemons as separate
2246
  users, see configure-time flags ``--with-user-prefix`` and
2247
  ``--with-group-prefix`` (only ``ganeti-rapi`` is supported at this
2248
  time)
2249
- Instances can be removed after export (``gnt-backup export
2250
  --remove-instance``)
2251
- Self-signed certificates generated by Ganeti now use a 2048 bit RSA
2252
  key (instead of 1024 bit)
2253
- Added new cluster configuration file for cluster domain secret
2254
- Import/export now use SSL instead of SSH
2255
- Added support for showing estimated time when exporting an instance,
2256
  see the ``ganeti-os-interface(7)`` manpage and look for
2257
  ``EXP_SIZE_FD``
2258

    
2259

    
2260
Version 2.1.8
2261
-------------
2262

    
2263
*(Released Tue, 16 Nov 2010)*
2264

    
2265
Some more bugfixes. Unless critical bugs occur, this will be the last
2266
2.1 release:
2267

    
2268
- Fix case of MAC special-values
2269
- Fix mac checker regex
2270
- backend: Fix typo causing "out of range" error
2271
- Add missing --units in gnt-instance list man page
2272

    
2273

    
2274
Version 2.1.7
2275
-------------
2276

    
2277
*(Released Tue, 24 Aug 2010)*
2278

    
2279
Bugfixes only:
2280
  - Don't ignore secondary node silently on non-mirrored disk templates
2281
    (issue 113)
2282
  - Fix --master-netdev arg name in gnt-cluster(8) (issue 114)
2283
  - Fix usb_mouse parameter breaking with vnc_console (issue 109)
2284
  - Properly document the usb_mouse parameter
2285
  - Fix path in ganeti-rapi(8) (issue 116)
2286
  - Adjust error message when the ganeti user's .ssh directory is
2287
    missing
2288
  - Add same-node-check when changing the disk template to drbd
2289

    
2290

    
2291
Version 2.1.6
2292
-------------
2293

    
2294
*(Released Fri, 16 Jul 2010)*
2295

    
2296
Bugfixes only:
2297
  - Add an option to only select some reboot types during qa/burnin.
2298
    (on some hypervisors consequent reboots are not supported)
2299
  - Fix infrequent race condition in master failover. Sometimes the old
2300
    master ip address would be still detected as up for a short time
2301
    after it was removed, causing failover to fail.
2302
  - Decrease mlockall warnings when the ctypes module is missing. On
2303
    Python 2.4 we support running even if no ctypes module is installed,
2304
    but we were too verbose about this issue.
2305
  - Fix building on old distributions, on which man doesn't have a
2306
    --warnings option.
2307
  - Fix RAPI not to ignore the MAC address on instance creation
2308
  - Implement the old instance creation format in the RAPI client.
2309

    
2310

    
2311
Version 2.1.5
2312
-------------
2313

    
2314
*(Released Thu, 01 Jul 2010)*
2315

    
2316
A small bugfix release:
2317
  - Fix disk adoption: broken by strict --disk option checking in 2.1.4
2318
  - Fix batch-create: broken in the whole 2.1 series due to a lookup on
2319
    a non-existing option
2320
  - Fix instance create: the --force-variant option was ignored
2321
  - Improve pylint 0.21 compatibility and warnings with Python 2.6
2322
  - Fix modify node storage with non-FQDN arguments
2323
  - Fix RAPI client to authenticate under Python 2.6 when used
2324
    for more than 5 requests needing authentication
2325
  - Fix gnt-instance modify -t (storage) giving a wrong error message
2326
    when converting a non-shutdown drbd instance to plain
2327

    
2328

    
2329
Version 2.1.4
2330
-------------
2331

    
2332
*(Released Fri, 18 Jun 2010)*
2333

    
2334
A small bugfix release:
2335

    
2336
  - Fix live migration of KVM instances started with older Ganeti
2337
    versions which had fewer hypervisor parameters
2338
  - Fix gnt-instance grow-disk on down instances
2339
  - Fix an error-reporting bug during instance migration
2340
  - Better checking of the ``--net`` and ``--disk`` values, to avoid
2341
    silently ignoring broken ones
2342
  - Fix an RPC error reporting bug affecting, for example, RAPI client
2343
    users
2344
  - Fix bug triggered by different API version os-es on different nodes
2345
  - Fix a bug in instance startup with custom hvparams: OS level
2346
    parameters would fail to be applied.
2347
  - Fix the RAPI client under Python 2.6 (but more work is needed to
2348
    make it work completely well with OpenSSL)
2349
  - Fix handling of errors when resolving names from DNS
2350

    
2351

    
2352
Version 2.1.3
2353
-------------
2354

    
2355
*(Released Thu, 3 Jun 2010)*
2356

    
2357
A medium sized development cycle. Some new features, and some
2358
fixes/small improvements/cleanups.
2359

    
2360
Significant features
2361
~~~~~~~~~~~~~~~~~~~~
2362

    
2363
The node deamon now tries to mlock itself into memory, unless the
2364
``--no-mlock`` flag is passed. It also doesn't fail if it can't write
2365
its logs, and falls back to console logging. This allows emergency
2366
features such as ``gnt-node powercycle`` to work even in the event of a
2367
broken node disk (tested offlining the disk hosting the node's
2368
filesystem and dropping its memory caches; don't try this at home)
2369

    
2370
KVM: add vhost-net acceleration support. It can be tested with a new
2371
enough version of the kernel and of qemu-kvm.
2372

    
2373
KVM: Add instance chrooting feature. If you use privilege dropping for
2374
your VMs you can also now force them to chroot to an empty directory,
2375
before starting the emulated guest.
2376

    
2377
KVM: Add maximum migration bandwith and maximum downtime tweaking
2378
support (requires a new-enough version of qemu-kvm).
2379

    
2380
Cluster verify will now warn if the master node doesn't have the master
2381
ip configured on it.
2382

    
2383
Add a new (incompatible) instance creation request format to RAPI which
2384
supports all parameters (previously only a subset was supported, and it
2385
wasn't possible to extend the old format to accomodate all the new
2386
features. The old format is still supported, and a client can check for
2387
this feature, before using it, by checking for its presence in the
2388
``features`` RAPI resource.
2389

    
2390
Now with ancient latin support. Try it passing the ``--roman`` option to
2391
``gnt-instance info``, ``gnt-cluster info`` or ``gnt-node list``
2392
(requires the python-roman module to be installed, in order to work).
2393

    
2394
Other changes
2395
~~~~~~~~~~~~~
2396

    
2397
As usual many internal code refactorings, documentation updates, and
2398
such. Among others:
2399

    
2400
  - Lots of improvements and cleanups to the experimental Remote API
2401
    (RAPI) client library.
2402
  - A new unit test suite for the core daemon libraries.
2403
  - A fix to creating missing directories makes sure the umask is not
2404
    applied anymore. This enforces the same directory permissions
2405
    everywhere.
2406
  - Better handling terminating daemons with ctrl+c (used when running
2407
    them in debugging mode).
2408
  - Fix a race condition in live migrating a KVM instance, when stat()
2409
    on the old proc status file returned EINVAL, which is an unexpected
2410
    value.
2411
  - Fixed manpage checking with newer man and utf-8 charachters. But now
2412
    you need the en_US.UTF-8 locale enabled to build Ganeti from git.
2413

    
2414

    
2415
Version 2.1.2.1
2416
---------------
2417

    
2418
*(Released Fri, 7 May 2010)*
2419

    
2420
Fix a bug which prevented untagged KVM instances from starting.
2421

    
2422

    
2423
Version 2.1.2
2424
-------------
2425

    
2426
*(Released Fri, 7 May 2010)*
2427

    
2428
Another release with a long development cycle, during which many
2429
different features were added.
2430

    
2431
Significant features
2432
~~~~~~~~~~~~~~~~~~~~
2433

    
2434
The KVM hypervisor now can run the individual instances as non-root, to
2435
reduce the impact of a VM being hijacked due to bugs in the
2436
hypervisor. It is possible to run all instances as a single (non-root)
2437
user, to manually specify a user for each instance, or to dynamically
2438
allocate a user out of a cluster-wide pool to each instance, with the
2439
guarantee that no two instances will run under the same user ID on any
2440
given node.
2441

    
2442
An experimental RAPI client library, that can be used standalone
2443
(without the other Ganeti libraries), is provided in the source tree as
2444
``lib/rapi/client.py``. Note this client might change its interface in
2445
the future, as we iterate on its capabilities.
2446

    
2447
A new command, ``gnt-cluster renew-crypto`` has been added to easily
2448
replace the cluster's certificates and crypto keys. This might help in
2449
case they have been compromised, or have simply expired.
2450

    
2451
A new disk option for instance creation has been added that allows one
2452
to "adopt" currently existing logical volumes, with data
2453
preservation. This should allow easier migration to Ganeti from
2454
unmanaged (or managed via other software) instances.
2455

    
2456
Another disk improvement is the possibility to convert between redundant
2457
(DRBD) and plain (LVM) disk configuration for an instance. This should
2458
allow better scalability (starting with one node and growing the
2459
cluster, or shrinking a two-node cluster to one node).
2460

    
2461
A new feature that could help with automated node failovers has been
2462
implemented: if a node sees itself as offline (by querying the master
2463
candidates), it will try to shutdown (hard) all instances and any active
2464
DRBD devices. This reduces the risk of duplicate instances if an
2465
external script automatically failovers the instances on such nodes. To
2466
enable this, the cluster parameter ``maintain_node_health`` should be
2467
enabled; in the future this option (per the name) will enable other
2468
automatic maintenance features.
2469

    
2470
Instance export/import now will reuse the original instance
2471
specifications for all parameters; that means exporting an instance,
2472
deleting it and the importing it back should give an almost identical
2473
instance. Note that the default import behaviour has changed from
2474
before, where it created only one NIC; now it recreates the original
2475
number of NICs.
2476

    
2477
Cluster verify has added a few new checks: SSL certificates validity,
2478
/etc/hosts consistency across the cluster, etc.
2479

    
2480
Other changes
2481
~~~~~~~~~~~~~
2482

    
2483
As usual, many internal changes were done, documentation fixes,
2484
etc. Among others:
2485

    
2486
- Fixed cluster initialization with disabled cluster storage (regression
2487
  introduced in 2.1.1)
2488
- File-based storage supports growing the disks
2489
- Fixed behaviour of node role changes
2490
- Fixed cluster verify for some corner cases, plus a general rewrite of
2491
  cluster verify to allow future extension with more checks
2492
- Fixed log spamming by watcher and node daemon (regression introduced
2493
  in 2.1.1)
2494
- Fixed possible validation issues when changing the list of enabled
2495
  hypervisors
2496
- Fixed cleanup of /etc/hosts during node removal
2497
- Fixed RAPI response for invalid methods
2498
- Fixed bug with hashed passwords in ``ganeti-rapi`` daemon
2499
- Multiple small improvements to the KVM hypervisor (VNC usage, booting
2500
  from ide disks, etc.)
2501
- Allow OS changes without re-installation (to record a changed OS
2502
  outside of Ganeti, or to allow OS renames)
2503
- Allow instance creation without OS installation (useful for example if
2504
  the OS will be installed manually, or restored from a backup not in
2505
  Ganeti format)
2506
- Implemented option to make cluster ``copyfile`` use the replication
2507
  network
2508
- Added list of enabled hypervisors to ssconf (possibly useful for
2509
  external scripts)
2510
- Added a new tool (``tools/cfgupgrade12``) that allows upgrading from
2511
  1.2 clusters
2512
- A partial form of node re-IP is possible via node readd, which now
2513
  allows changed node primary IP
2514
- Command line utilities now show an informational message if the job is
2515
  waiting for a lock
2516
- The logs of the master daemon now show the PID/UID/GID of the
2517
  connected client
2518

    
2519

    
2520
Version 2.1.1
2521
-------------
2522

    
2523
*(Released Fri, 12 Mar 2010)*
2524

    
2525
During the 2.1.0 long release candidate cycle, a lot of improvements and
2526
changes have accumulated with were released later as 2.1.1.
2527

    
2528
Major changes
2529
~~~~~~~~~~~~~
2530

    
2531
The node evacuate command (``gnt-node evacuate``) was significantly
2532
rewritten, and as such the IAllocator protocol was changed - a new
2533
request type has been added. This unfortunate change during a stable
2534
series is designed to improve performance of node evacuations; on
2535
clusters with more than about five nodes and which are well-balanced,
2536
evacuation should proceed in parallel for all instances of the node
2537
being evacuated. As such, any existing IAllocator scripts need to be
2538
updated, otherwise the above command will fail due to the unknown
2539
request. The provided "dumb" allocator has not been updated; but the
2540
ganeti-htools package supports the new protocol since version 0.2.4.
2541

    
2542
Another important change is increased validation of node and instance
2543
names. This might create problems in special cases, if invalid host
2544
names are being used.
2545

    
2546
Also, a new layer of hypervisor parameters has been added, that sits at
2547
OS level between the cluster defaults and the instance ones. This allows
2548
customisation of virtualization parameters depending on the installed
2549
OS. For example instances with OS 'X' may have a different KVM kernel
2550
(or any other parameter) than the cluster defaults. This is intended to
2551
help managing a multiple OSes on the same cluster, without manual
2552
modification of each instance's parameters.
2553

    
2554
A tool for merging clusters, ``cluster-merge``, has been added in the
2555
tools sub-directory.
2556

    
2557
Bug fixes
2558
~~~~~~~~~
2559

    
2560
- Improved the int/float conversions that should make the code more
2561
  robust in face of errors from the node daemons
2562
- Fixed the remove node code in case of internal configuration errors
2563
- Fixed the node daemon behaviour in face of inconsistent queue
2564
  directory (e.g. read-only file-system where we can't open the files
2565
  read-write, etc.)
2566
- Fixed the behaviour of gnt-node modify for master candidate demotion;
2567
  now it either aborts cleanly or, if given the new "auto_promote"
2568
  parameter, will automatically promote other nodes as needed
2569
- Fixed compatibility with (unreleased yet) Python 2.6.5 that would
2570
  completely prevent Ganeti from working
2571
- Fixed bug for instance export when not all disks were successfully
2572
  exported
2573
- Fixed behaviour of node add when the new node is slow in starting up
2574
  the node daemon
2575
- Fixed handling of signals in the LUXI client, which should improve
2576
  behaviour of command-line scripts
2577
- Added checks for invalid node/instance names in the configuration (now
2578
  flagged during cluster verify)
2579
- Fixed watcher behaviour for disk activation errors
2580
- Fixed two potentially endless loops in http library, which led to the
2581
  RAPI daemon hanging and consuming 100% CPU in some cases
2582
- Fixed bug in RAPI daemon related to hashed passwords
2583
- Fixed bug for unintended qemu-level bridging of multi-NIC KVM
2584
  instances
2585
- Enhanced compatibility with non-Debian OSes, but not using absolute
2586
  path in some commands and allowing customisation of the ssh
2587
  configuration directory
2588
- Fixed possible future issue with new Python versions by abiding to the
2589
  proper use of ``__slots__`` attribute on classes
2590
- Added checks that should prevent directory traversal attacks
2591
- Many documentation fixes based on feedback from users
2592

    
2593
New features
2594
~~~~~~~~~~~~
2595

    
2596
- Added an "early_release" more for instance replace disks and node
2597
  evacuate, where we release locks earlier and thus allow higher
2598
  parallelism within the cluster
2599
- Added watcher hooks, intended to allow the watcher to restart other
2600
  daemons (e.g. from the ganeti-nbma project), but they can be used of
2601
  course for any other purpose
2602
- Added a compile-time disable for DRBD barriers, to increase
2603
  performance if the administrator trusts the power supply or the
2604
  storage system to not lose writes
2605
- Added the option of using syslog for logging instead of, or in
2606
  addition to, Ganeti's own log files
2607
- Removed boot restriction for paravirtual NICs for KVM, recent versions
2608
  can indeed boot from a paravirtual NIC
2609
- Added a generic debug level for many operations; while this is not
2610
  used widely yet, it allows one to pass the debug value all the way to
2611
  the OS scripts
2612
- Enhanced the hooks environment for instance moves (failovers,
2613
  migrations) where the primary/secondary nodes changed during the
2614
  operation, by adding {NEW,OLD}_{PRIMARY,SECONDARY} vars
2615
- Enhanced data validations for many user-supplied values; one important
2616
  item is the restrictions imposed on instance and node names, which
2617
  might reject some (invalid) host names
2618
- Add a configure-time option to disable file-based storage, if it's not
2619
  needed; this allows greater security separation between the master
2620
  node and the other nodes from the point of view of the inter-node RPC
2621
  protocol
2622
- Added user notification in interactive tools if job is waiting in the
2623
  job queue or trying to acquire locks
2624
- Added log messages when a job is waiting for locks
2625
- Added filtering by node tags in instance operations which admit
2626
  multiple instances (start, stop, reboot, reinstall)
2627
- Added a new tool for cluster mergers, ``cluster-merge``
2628
- Parameters from command line which are of the form ``a=b,c=d`` can now
2629
  use backslash escapes to pass in values which contain commas,
2630
  e.g. ``a=b\\c,d=e`` where the 'a' parameter would get the value
2631
  ``b,c``
2632
- For KVM, the instance name is the first parameter passed to KVM, so
2633
  that it's more visible in the process list
2634

    
2635

    
2636
Version 2.1.0
2637
-------------
2638

    
2639
*(Released Tue, 2 Mar 2010)*
2640

    
2641
Ganeti 2.1 brings many improvements with it. Major changes:
2642

    
2643
- Added infrastructure to ease automated disk repairs
2644
- Added new daemon to export configuration data in a cheaper way than
2645
  using the remote API
2646
- Instance NICs can now be routed instead of being associated with a
2647
  networking bridge
2648
- Improved job locking logic to reduce impact of jobs acquiring multiple
2649
  locks waiting for other long-running jobs
2650

    
2651
In-depth implementation details can be found in the Ganeti 2.1 design
2652
document.
2653

    
2654
Details
2655
~~~~~~~
2656

    
2657
- Added chroot hypervisor
2658
- Added more options to xen-hvm hypervisor (``kernel_path`` and
2659
  ``device_model``)
2660
- Added more options to xen-pvm hypervisor (``use_bootloader``,
2661
  ``bootloader_path`` and ``bootloader_args``)
2662
- Added the ``use_localtime`` option for the xen-hvm and kvm
2663
  hypervisors, and the default value for this has changed to false (in
2664
  2.0 xen-hvm always enabled it)
2665
- Added luxi call to submit multiple jobs in one go
2666
- Added cluster initialization option to not modify ``/etc/hosts``
2667
  file on nodes
2668
- Added network interface parameters
2669
- Added dry run mode to some LUs
2670
- Added RAPI resources:
2671

    
2672
  - ``/2/instances/[instance_name]/info``
2673
  - ``/2/instances/[instance_name]/replace-disks``
2674
  - ``/2/nodes/[node_name]/evacuate``
2675
  - ``/2/nodes/[node_name]/migrate``
2676
  - ``/2/nodes/[node_name]/role``
2677
  - ``/2/nodes/[node_name]/storage``
2678
  - ``/2/nodes/[node_name]/storage/modify``
2679
  - ``/2/nodes/[node_name]/storage/repair``
2680

    
2681
- Added OpCodes to evacuate or migrate all instances on a node
2682
- Added new command to list storage elements on nodes (``gnt-node
2683
  list-storage``) and modify them (``gnt-node modify-storage``)
2684
- Added new ssconf files with master candidate IP address
2685
  (``ssconf_master_candidates_ips``), node primary IP address
2686
  (``ssconf_node_primary_ips``) and node secondary IP address
2687
  (``ssconf_node_secondary_ips``)
2688
- Added ``ganeti-confd`` and a client library to query the Ganeti
2689
  configuration via UDP
2690
- Added ability to run hooks after cluster initialization and before
2691
  cluster destruction
2692
- Added automatic mode for disk replace (``gnt-instance replace-disks
2693
  --auto``)
2694
- Added ``gnt-instance recreate-disks`` to re-create (empty) disks
2695
  after catastrophic data-loss
2696
- Added ``gnt-node repair-storage`` command to repair damaged LVM volume
2697
  groups
2698
- Added ``gnt-instance move`` command to move instances
2699
- Added ``gnt-cluster watcher`` command to control watcher
2700
- Added ``gnt-node powercycle`` command to powercycle nodes
2701
- Added new job status field ``lock_status``
2702
- Added parseable error codes to cluster verification (``gnt-cluster
2703
  verify --error-codes``) and made output less verbose (use
2704
  ``--verbose`` to restore previous behaviour)
2705
- Added UUIDs to the main config entities (cluster, nodes, instances)
2706
- Added support for OS variants
2707
- Added support for hashed passwords in the Ganeti remote API users file
2708
  (``rapi_users``)
2709
- Added option to specify maximum timeout on instance shutdown
2710
- Added ``--no-ssh-init`` option to ``gnt-cluster init``
2711
- Added new helper script to start and stop Ganeti daemons
2712
  (``daemon-util``), with the intent to reduce the work necessary to
2713
  adjust Ganeti for non-Debian distributions and to start/stop daemons
2714
  from one place
2715
- Added more unittests
2716
- Fixed critical bug in ganeti-masterd startup
2717
- Removed the configure-time ``kvm-migration-port`` parameter, this is
2718
  now customisable at the cluster level for both the KVM and Xen
2719
  hypervisors using the new ``migration_port`` parameter
2720
- Pass ``INSTANCE_REINSTALL`` variable to OS installation script when
2721
  reinstalling an instance
2722
- Allowed ``@`` in tag names
2723
- Migrated to Sphinx (http://sphinx.pocoo.org/) for documentation
2724
- Many documentation updates
2725
- Distribute hypervisor files on ``gnt-cluster redist-conf``
2726
- ``gnt-instance reinstall`` can now reinstall multiple instances
2727
- Updated many command line parameters
2728
- Introduced new OS API version 15
2729
- No longer support a default hypervisor
2730
- Treat virtual LVs as inexistent
2731
- Improved job locking logic to reduce lock contention
2732
- Match instance and node names case insensitively
2733
- Reimplemented bash completion script to be more complete
2734
- Improved burnin
2735

    
2736

    
2737
Version 2.0.6
2738
-------------
2739

    
2740
*(Released Thu, 4 Feb 2010)*
2741

    
2742
- Fix cleaner behaviour on nodes not in a cluster (Debian bug 568105)
2743
- Fix a string formatting bug
2744
- Improve safety of the code in some error paths
2745
- Improve data validation in the master of values returned from nodes
2746

    
2747

    
2748
Version 2.0.5
2749
-------------
2750

    
2751
*(Released Thu, 17 Dec 2009)*
2752

    
2753
- Fix security issue due to missing validation of iallocator names; this
2754
  allows local and remote execution of arbitrary executables
2755
- Fix failure of gnt-node list during instance removal
2756
- Ship the RAPI documentation in the archive
2757

    
2758

    
2759
Version 2.0.4
2760
-------------
2761

    
2762
*(Released Wed, 30 Sep 2009)*
2763

    
2764
- Fixed many wrong messages
2765
- Fixed a few bugs related to the locking library
2766
- Fixed MAC checking at instance creation time
2767
- Fixed a DRBD parsing bug related to gaps in /proc/drbd
2768
- Fixed a few issues related to signal handling in both daemons and
2769
  scripts
2770
- Fixed the example startup script provided
2771
- Fixed insserv dependencies in the example startup script (patch from
2772
  Debian)
2773
- Fixed handling of drained nodes in the iallocator framework
2774
- Fixed handling of KERNEL_PATH parameter for xen-hvm (Debian bug
2775
  #528618)
2776
- Fixed error related to invalid job IDs in job polling
2777
- Fixed job/opcode persistence on unclean master shutdown
2778
- Fixed handling of partial job processing after unclean master
2779
  shutdown
2780
- Fixed error reporting from LUs, previously all errors were converted
2781
  into execution errors
2782
- Fixed error reporting from burnin
2783
- Decreased significantly the memory usage of the job queue
2784
- Optimised slightly multi-job submission
2785
- Optimised slightly opcode loading
2786
- Backported the multi-job submit framework from the development
2787
  branch; multi-instance start and stop should be faster
2788
- Added script to clean archived jobs after 21 days; this will reduce
2789
  the size of the queue directory
2790
- Added some extra checks in disk size tracking
2791
- Added an example ethers hook script
2792
- Added a cluster parameter that prevents Ganeti from modifying of
2793
  /etc/hosts
2794
- Added more node information to RAPI responses
2795
- Added a ``gnt-job watch`` command that allows following the ouput of a
2796
  job
2797
- Added a bind-address option to ganeti-rapi
2798
- Added more checks to the configuration verify
2799
- Enhanced the burnin script such that some operations can be retried
2800
  automatically
2801
- Converted instance reinstall to multi-instance model
2802

    
2803

    
2804
Version 2.0.3
2805
-------------
2806

    
2807
*(Released Fri, 7 Aug 2009)*
2808

    
2809
- Added ``--ignore-size`` to the ``gnt-instance activate-disks`` command
2810
  to allow using the pre-2.0.2 behaviour in activation, if any existing
2811
  instances have mismatched disk sizes in the configuration
2812
- Added ``gnt-cluster repair-disk-sizes`` command to check and update
2813
  any configuration mismatches for disk sizes
2814
- Added ``gnt-master cluste-failover --no-voting`` to allow master
2815
  failover to work on two-node clusters
2816
- Fixed the ``--net`` option of ``gnt-backup import``, which was
2817
  unusable
2818
- Fixed detection of OS script errors in ``gnt-backup export``
2819
- Fixed exit code of ``gnt-backup export``
2820

    
2821

    
2822
Version 2.0.2
2823
-------------
2824

    
2825
*(Released Fri, 17 Jul 2009)*
2826

    
2827
- Added experimental support for stripped logical volumes; this should
2828
  enhance performance but comes with a higher complexity in the block
2829
  device handling; stripping is only enabled when passing
2830
  ``--with-lvm-stripecount=N`` to ``configure``, but codepaths are
2831
  affected even in the non-stripped mode
2832
- Improved resiliency against transient failures at the end of DRBD
2833
  resyncs, and in general of DRBD resync checks
2834
- Fixed a couple of issues with exports and snapshot errors
2835
- Fixed a couple of issues in instance listing
2836
- Added display of the disk size in ``gnt-instance info``
2837
- Fixed checking for valid OSes in instance creation
2838
- Fixed handling of the "vcpus" parameter in instance listing and in
2839
  general of invalid parameters
2840
- Fixed http server library, and thus RAPI, to handle invalid
2841
  username/password combinations correctly; this means that now they
2842
  report unauthorized for queries too, not only for modifications,
2843
  allowing earlier detect of configuration problems
2844
- Added a new "role" node list field, equivalent to the master/master
2845
  candidate/drained/offline flags combinations
2846
- Fixed cluster modify and changes of candidate pool size
2847
- Fixed cluster verify error messages for wrong files on regular nodes
2848
- Fixed a couple of issues with node demotion from master candidate role
2849
- Fixed node readd issues
2850
- Added non-interactive mode for ``ganeti-masterd --no-voting`` startup
2851
- Added a new ``--no-voting`` option for masterfailover to fix failover
2852
  on two-nodes clusters when the former master node is unreachable
2853
- Added instance reinstall over RAPI
2854

    
2855

    
2856
Version 2.0.1
2857
-------------
2858

    
2859
*(Released Tue, 16 Jun 2009)*
2860

    
2861
- added ``-H``/``-B`` startup parameters to ``gnt-instance``, which will
2862
  allow re-adding the start in single-user option (regression from 1.2)
2863
- the watcher writes the instance status to a file, to allow monitoring
2864
  to report the instance status (from the master) based on cached
2865
  results of the watcher's queries; while this can get stale if the
2866
  watcher is being locked due to other work on the cluster, this is
2867
  still an improvement
2868
- the watcher now also restarts the node daemon and the rapi daemon if
2869
  they died
2870
- fixed the watcher to handle full and drained queue cases
2871
- hooks export more instance data in the environment, which helps if
2872
  hook scripts need to take action based on the instance's properties
2873
  (no longer need to query back into ganeti)
2874
- instance failovers when the instance is stopped do not check for free
2875
  RAM, so that failing over a stopped instance is possible in low memory
2876
  situations
2877
- rapi uses queries for tags instead of jobs (for less job traffic), and
2878
  for cluster tags it won't talk to masterd at all but read them from
2879
  ssconf
2880
- a couple of error handling fixes in RAPI
2881
- drbd handling: improved the error handling of inconsistent disks after
2882
  resync to reduce the frequency of "there are some degraded disks for
2883
  this instance" messages
2884
- fixed a bug in live migration when DRBD doesn't want to reconnect (the
2885
  error handling path called a wrong function name)
2886

    
2887

    
2888
Version 2.0.0
2889
-------------
2890

    
2891
*(Released Wed, 27 May 2009)*
2892

    
2893
- no changes from rc5
2894

    
2895

    
2896
Version 2.0 rc5
2897
---------------
2898

    
2899
*(Released Wed, 20 May 2009)*
2900

    
2901
- fix a couple of bugs (validation, argument checks)
2902
- fix ``gnt-cluster getmaster`` on non-master nodes (regression)
2903
- some small improvements to RAPI and IAllocator
2904
- make watcher automatically start the master daemon if down
2905

    
2906

    
2907
Version 2.0 rc4
2908
---------------
2909

    
2910
*(Released Mon, 27 Apr 2009)*
2911

    
2912
- change the OS list to not require locks; this helps with big clusters
2913
- fix ``gnt-cluster verify`` and ``gnt-cluster verify-disks`` when the
2914
  volume group is broken
2915
- ``gnt-instance info``, without any arguments, doesn't run for all
2916
  instances anymore; either pass ``--all`` or pass the desired
2917
  instances; this helps against mistakes on big clusters where listing
2918
  the information for all instances takes a long time
2919
- miscellaneous doc and man pages fixes
2920

    
2921

    
2922
Version 2.0 rc3
2923
---------------
2924

    
2925
*(Released Wed, 8 Apr 2009)*
2926

    
2927
- Change the internal locking model of some ``gnt-node`` commands, in
2928
  order to reduce contention (and blocking of master daemon) when
2929
  batching many creation/reinstall jobs
2930
- Fixes to Xen soft reboot
2931
- No longer build documentation at build time, instead distribute it in
2932
  the archive, in order to reduce the need for the whole docbook/rst
2933
  toolchains
2934

    
2935

    
2936
Version 2.0 rc2
2937
---------------
2938

    
2939
*(Released Fri, 27 Mar 2009)*
2940

    
2941
- Now the cfgupgrade scripts works and can upgrade 1.2.7 clusters to 2.0
2942
- Fix watcher startup sequence, improves the behaviour of busy clusters
2943
- Some other fixes in ``gnt-cluster verify``, ``gnt-instance
2944
  replace-disks``, ``gnt-instance add``, ``gnt-cluster queue``, KVM VNC
2945
  bind address and other places
2946
- Some documentation fixes and updates
2947

    
2948

    
2949
Version 2.0 rc1
2950
---------------
2951

    
2952
*(Released Mon, 2 Mar 2009)*
2953

    
2954
- More documentation updates, now all docs should be more-or-less
2955
  up-to-date
2956
- A couple of small fixes (mixed hypervisor clusters, offline nodes,
2957
  etc.)
2958
- Added a customizable HV_KERNEL_ARGS hypervisor parameter (for Xen PVM
2959
  and KVM)
2960
- Fix an issue related to $libdir/run/ganeti and cluster creation
2961

    
2962

    
2963
Version 2.0 beta2
2964
-----------------
2965

    
2966
*(Released Thu, 19 Feb 2009)*
2967

    
2968
- Xen PVM and KVM have switched the default value for the instance root
2969
  disk to the first partition on the first drive, instead of the whole
2970
  drive; this means that the OS installation scripts must be changed
2971
  accordingly
2972
- Man pages have been updated
2973
- RAPI has been switched by default to HTTPS, and the exported functions
2974
  should all work correctly
2975
- RAPI v1 has been removed
2976
- Many improvements to the KVM hypervisor
2977
- Block device errors are now better reported
2978
- Many other bugfixes and small improvements
2979

    
2980

    
2981
Version 2.0 beta1
2982
-----------------
2983

    
2984
*(Released Mon, 26 Jan 2009)*
2985

    
2986
- Version 2 is a general rewrite of the code and therefore the
2987
  differences are too many to list, see the design document for 2.0 in
2988
  the ``doc/`` subdirectory for more details
2989
- In this beta version there is not yet a migration path from 1.2 (there
2990
  will be one in the final 2.0 release)
2991
- A few significant changes are:
2992

    
2993
  - all commands are executed by a daemon (``ganeti-masterd``) and the
2994
    various ``gnt-*`` commands are just front-ends to it
2995
  - all the commands are entered into, and executed from a job queue,
2996
    see the ``gnt-job(8)`` manpage
2997
  - the RAPI daemon supports read-write operations, secured by basic
2998
    HTTP authentication on top of HTTPS
2999
  - DRBD version 0.7 support has been removed, DRBD 8 is the only
3000
    supported version (when migrating from Ganeti 1.2 to 2.0, you need
3001
    to migrate to DRBD 8 first while still running Ganeti 1.2)
3002
  - DRBD devices are using statically allocated minor numbers, which
3003
    will be assigned to existing instances during the migration process
3004
  - there is support for both Xen PVM and Xen HVM instances running on
3005
    the same cluster
3006
  - KVM virtualization is supported too
3007
  - file-based storage has been implemented, which means that it is
3008
    possible to run the cluster without LVM and DRBD storage, for
3009
    example using a shared filesystem exported from shared storage (and
3010
    still have live migration)
3011

    
3012

    
3013
Version 1.2.7
3014
-------------
3015

    
3016
*(Released Tue, 13 Jan 2009)*
3017

    
3018
- Change the default reboot type in ``gnt-instance reboot`` to "hard"
3019
- Reuse the old instance mac address by default on instance import, if
3020
  the instance name is the same.
3021
- Handle situations in which the node info rpc returns incomplete
3022
  results (issue 46)
3023
- Add checks for tcp/udp ports collisions in ``gnt-cluster verify``
3024
- Improved version of batcher:
3025

    
3026
  - state file support
3027
  - instance mac address support
3028
  - support for HVM clusters/instances
3029

    
3030
- Add an option to show the number of cpu sockets and nodes in
3031
  ``gnt-node list``
3032
- Support OSes that handle more than one version of the OS api (but do
3033
  not change the current API in any other way)
3034
- Fix ``gnt-node migrate``
3035
- ``gnt-debug`` man page
3036
- Fixes various more typos and small issues
3037
- Increase disk resync maximum speed to 60MB/s (from 30MB/s)
3038

    
3039

    
3040
Version 1.2.6
3041
-------------
3042

    
3043
*(Released Wed, 24 Sep 2008)*
3044

    
3045
- new ``--hvm-nic-type`` and ``--hvm-disk-type`` flags to control the
3046
  type of disk exported to fully virtualized instances.
3047
- provide access to the serial console of HVM instances
3048
- instance auto_balance flag, set by default. If turned off it will
3049
  avoid warnings on cluster verify if there is not enough memory to fail
3050
  over an instance. in the future it will prevent automatically failing
3051
  it over when we will support that.
3052
- batcher tool for instance creation, see ``tools/README.batcher``
3053
- ``gnt-instance reinstall --select-os`` to interactively select a new
3054
  operating system when reinstalling an instance.
3055
- when changing the memory amount on instance modify a check has been
3056
  added that the instance will be able to start. also warnings are
3057
  emitted if the instance will not be able to fail over, if auto_balance
3058
  is true.
3059
- documentation fixes
3060
- sync fields between ``gnt-instance list/modify/add/import``
3061
- fix a race condition in drbd when the sync speed was set after giving
3062
  the device a remote peer.
3063

    
3064

    
3065
Version 1.2.5
3066
-------------
3067

    
3068
*(Released Tue, 22 Jul 2008)*
3069

    
3070
- note: the allowed size and number of tags per object were reduced
3071
- fix a bug in ``gnt-cluster verify`` with inconsistent volume groups
3072
- fixed twisted 8.x compatibility
3073
- fixed ``gnt-instance replace-disks`` with iallocator
3074
- add TCP keepalives on twisted connections to detect restarted nodes
3075
- disk increase support, see ``gnt-instance grow-disk``
3076
- implement bulk node/instance query for RAPI
3077
- add tags in node/instance listing (optional)
3078
- experimental migration (and live migration) support, read the man page
3079
  for ``gnt-instance migrate``
3080
- the ``ganeti-watcher`` logs are now timestamped, and the watcher also
3081
  has some small improvements in handling its state file
3082

    
3083

    
3084
Version 1.2.4
3085
-------------
3086

    
3087
*(Released Fri, 13 Jun 2008)*
3088

    
3089
- Experimental readonly, REST-based remote API implementation;
3090
  automatically started on master node, TCP port 5080, if enabled by
3091
  ``--enable-rapi`` parameter to configure script.
3092
- Instance allocator support. Add and import instance accept a
3093
  ``--iallocator`` parameter, and call that instance allocator to decide
3094
  which node to use for the instance. The iallocator document describes
3095
  what's expected from an allocator script.
3096
- ``gnt-cluster verify`` N+1 memory redundancy checks: Unless passed the
3097
  ``--no-nplus1-mem`` option ``gnt-cluster verify`` now checks that if a
3098
  node is lost there is still enough memory to fail over the instances
3099
  that reside on it.
3100
- ``gnt-cluster verify`` hooks: it is now possible to add post-hooks to
3101
  ``gnt-cluster verify``, to check for site-specific compliance. All the
3102
  hooks will run, and their output, if any, will be displayed. Any
3103
  failing hook will make the verification return an error value.
3104
- ``gnt-cluster verify`` now checks that its peers are reachable on the
3105
  primary and secondary interfaces
3106
- ``gnt-node add`` now supports the ``--readd`` option, to readd a node
3107
  that is still declared as part of the cluster and has failed.
3108
- ``gnt-* list`` commands now accept a new ``-o +field`` way of
3109
  specifying output fields, that just adds the chosen fields to the
3110
  default ones.
3111
- ``gnt-backup`` now has a new ``remove`` command to delete an existing
3112
  export from the filesystem.
3113
- New per-instance parameters hvm_acpi, hvm_pae and hvm_cdrom_image_path
3114
  have been added. Using them you can enable/disable acpi and pae
3115
  support, and specify a path for a cd image to be exported to the
3116
  instance. These parameters as the name suggest only work on HVM
3117
  clusters.
3118
- When upgrading an HVM cluster to Ganeti 1.2.4, the values for ACPI and
3119
  PAE support will be set to the previously hardcoded values, but the
3120
  (previously hardcoded) path to the CDROM ISO image will be unset and
3121
  if required, needs to be set manually with ``gnt-instance modify``
3122
  after the upgrade.
3123
- The address to which an instance's VNC console is bound is now
3124
  selectable per-instance, rather than being cluster wide. Of course
3125
  this only applies to instances controlled via VNC, so currently just
3126
  applies to HVM clusters.
3127

    
3128

    
3129
Version 1.2.3
3130
-------------
3131

    
3132
*(Released Mon, 18 Feb 2008)*
3133

    
3134
- more tweaks to the disk activation code (especially helpful for DRBD)
3135
- change the default ``gnt-instance list`` output format, now there is
3136
  one combined status field (see the manpage for the exact values this
3137
  field will have)
3138
- some more fixes for the mac export to hooks change
3139
- make Ganeti not break with DRBD 8.2.x (which changed the version
3140
  format in ``/proc/drbd``) (issue 24)
3141
- add an upgrade tool from "remote_raid1" disk template to "drbd" disk
3142
  template, allowing migration from DRBD0.7+MD to DRBD8
3143

    
3144

    
3145
Version 1.2.2
3146
-------------
3147

    
3148
*(Released Wed, 30 Jan 2008)*
3149

    
3150
- fix ``gnt-instance modify`` breakage introduced in 1.2.1 with the HVM
3151
  support (issue 23)
3152
- add command aliases infrastructure and a few aliases
3153
- allow listing of VCPUs in the ``gnt-instance list`` and improve the
3154
  man pages and the ``--help`` option of ``gnt-node
3155
  list``/``gnt-instance list``
3156
- fix ``gnt-backup list`` with down nodes (issue 21)
3157
- change the tools location (move from $pkgdatadir to $pkglibdir/tools)
3158
- fix the dist archive and add a check for including svn/git files in
3159
  the future
3160
- some developer-related changes: improve the burnin and the QA suite,
3161
  add an upload script for testing during development
3162

    
3163

    
3164
Version 1.2.1
3165
-------------
3166

    
3167
*(Released Wed, 16 Jan 2008)*
3168

    
3169
- experimental HVM support, read the install document, section
3170
  "Initializing the cluster"
3171
- allow for the PVM hypervisor per-instance kernel and initrd paths
3172
- add a new command ``gnt-cluster verify-disks`` which uses a new
3173
  algorithm to improve the reconnection of the DRBD pairs if the device
3174
  on the secondary node has gone away
3175
- make logical volume code auto-activate LVs at disk activation time
3176
- slightly improve the speed of activating disks
3177
- allow specification of the MAC address at instance creation time, and
3178
  changing it later via ``gnt-instance modify``
3179
- fix handling of external commands that generate lots of output on
3180
  stderr
3181
- update documentation with regard to minimum version of DRBD8 supported
3182

    
3183

    
3184
Version 1.2.0
3185
-------------
3186

    
3187
*(Released Tue, 4 Dec 2007)*
3188

    
3189
- Log the ``xm create`` output to the node daemon log on failure (to
3190
  help diagnosing the error)
3191
- In debug mode, log all external commands output if failed to the logs
3192
- Change parsing of lvm commands to ignore stderr
3193

    
3194

    
3195
Version 1.2 beta3
3196
-----------------
3197

    
3198
*(Released Wed, 28 Nov 2007)*
3199

    
3200
- Another round of updates to the DRBD 8 code to deal with more failures
3201
  in the replace secondary node operation
3202
- Some more logging of failures in disk operations (lvm, drbd)
3203
- A few documentation updates
3204
- QA updates
3205

    
3206

    
3207
Version 1.2 beta2
3208
-----------------
3209

    
3210
*(Released Tue, 13 Nov 2007)*
3211

    
3212
- Change configuration file format from Python's Pickle to JSON.
3213
  Upgrading is possible using the cfgupgrade utility.
3214
- Add support for DRBD 8.0 (new disk template ``drbd``) which allows for
3215
  faster replace disks and is more stable (DRBD 8 has many improvements
3216
  compared to DRBD 0.7)
3217
- Added command line tags support (see man pages for ``gnt-instance``,
3218
  ``gnt-node``, ``gnt-cluster``)
3219
- Added instance rename support
3220
- Added multi-instance startup/shutdown
3221
- Added cluster rename support
3222
- Added ``gnt-node evacuate`` to simplify some node operations
3223
- Added instance reboot operation that can speedup reboot as compared to
3224
  stop and start
3225
- Soften the requirement that hostnames are in FQDN format
3226
- The ``ganeti-watcher`` now activates drbd pairs after secondary node
3227
  reboots
3228
- Removed dependency on debian's patched fping that uses the
3229
  non-standard ``-S`` option
3230
- Now the OS definitions are searched for in multiple, configurable
3231
  paths (easier for distros to package)
3232
- Some changes to the hooks infrastructure (especially the new
3233
  post-configuration update hook)
3234
- Other small bugfixes
3235

    
3236
.. vim: set textwidth=72 syntax=rst :
3237
.. Local Variables:
3238
.. mode: rst
3239
.. fill-column: 72
3240
.. End: