Statistics
| Branch: | Tag: | Revision:

root / NEWS @ 7ea201c9

History | View | Annotate | Download (130.7 kB)

1
News
2
====
3

    
4

    
5
Version 2.12.0 alpha1
6
---------------------
7

    
8
*(unreleased)*
9

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

    
13
- Do not use debug mode in production. Certain daemons will issue warnings
14
  when launched in debug mode. Some debug logging violates some of the new
15
  invariants in the system (see "New features"). The logging has been kept as
16
  it aids diagnostics and development.
17

    
18
New features
19
~~~~~~~~~~~~
20

    
21
- OS install script parameters now come in public, private and secret
22
  varieties:
23

    
24
  - Public parameters are like all other parameters in Ganeti.
25
  - Ganeti will not log private and secret parameters, *unless* it is running
26
    in debug mode.
27
  - Ganeti will not save secret parameters to configuration. Secret parameters
28
    must be supplied every time you install, or reinstall, an instance.
29
  - Attempting to override public parameters with private or secret parameters
30
    results in an error. Similarly, you may not use secret parameters to
31
    override private parameters.
32
  - The move-instance tool can now attempt to allocate an instance by using
33
    opportunistic locking when an iallocator is used.
34

    
35

    
36
Version 2.11.0 beta1
37
--------------------
38

    
39
*(Released Wed, 5 Mar 2014)*
40

    
41
Incompatible/important changes
42
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43

    
44
- ``gnt-node list`` no longer shows disk space information for shared file
45
  disk templates because it is not a node attribute. (For example, if you have
46
  both the file and shared file disk templates enabled, ``gnt-node list`` now
47
  only shows information about the file disk template.)
48
- The shared file disk template is now in the new 'sharedfile' storage type.
49
  As a result, ``gnt-node list-storage -t file`` now only shows information
50
  about the file disk template and you may use ``gnt-node list-storage -t
51
  sharedfile`` to query storage information for the shared file disk template.
52
- Over luxi, syntactially incorrect queries are now rejected as a whole;
53
  before, a 'SumbmitManyJobs' request was partially executed, if the outer
54
  structure of the request was syntactically correct. As the luxi protocol
55
  is internal (external applications are expected to use RAPI), the impact
56
  of this incompatible change should be limited.
57
- Queries for nodes, instances, groups, backups and networks are now
58
  exclusively done via the luxi daemon. Legacy python code was removed,
59
  as well as the --enable-split-queries configuration option.
60
- Orphan volumes errors are demoted to warnings and no longer affect the exit
61
  code of ``gnt-cluster verify``.
62
- RPC security got enhanced by using different client SSL certificates
63
  for each node. In this context 'gnt-cluster renew-crypto' got a new
64
  option '--renew-node-certificates', which renews the client
65
  certificates of all nodes. After a cluster upgrade from pre-2.11, run
66
  this to create client certificates and activate this feature.
67

    
68
New features
69
~~~~~~~~~~~~
70

    
71
- Instance moves, backups and imports can now use compression to transfer the
72
  instance data.
73
- Node groups can be configured to use an SSH port different than the
74
  default 22.
75
- Added experimental support for Gluster distributed file storage as the
76
  ``gluster`` disk template under the new ``sharedfile`` storage type through
77
  automatic management of per-node FUSE mount points. You can configure the
78
  mount point location at ``gnt-cluster init`` time by using the new
79
  ``--gluster-storage-dir`` switch.
80
- Job scheduling is now handled by luxid, and the maximal number of jobs running
81
  in parallel is a run-time parameter of the cluster.
82

    
83
New dependencies
84
~~~~~~~~~~~~~~~~
85
The following new dependencies have been added:
86

    
87
For Haskell:
88

    
89
- ``zlib`` library (http://hackage.haskell.org/package/base64-bytestring)
90

    
91
- ``base64-bytestring`` library (http://hackage.haskell.org/package/zlib),
92
  at least version 1.0.0.0
93

    
94
- ``lifted-base`` library (http://hackage.haskell.org/package/lifted-base)
95

    
96
- ``lens`` library (http://hackage.haskell.org/package/lens)
97

    
98

    
99
Version 2.10.0
100
--------------
101

    
102
*(Released Thu, 20 Feb 2014)*
103

    
104
Incompatible/important changes
105
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
106

    
107
- Adding disks with 'gnt-instance modify' now waits for the disks to sync per
108
  default. Specify --no-wait-for-sync to override this behavior.
109
- The Ganeti python code now adheres to a private-module layout. In particular,
110
  the module 'ganeti' is no longer in the python search path.
111
- On instance allocation, the iallocator now considers non-LVM storage
112
  properly. In particular, actual file storage space information is used
113
  when allocating space for a file/sharedfile instance.
114
- When disabling disk templates cluster-wide, the cluster now first
115
  checks whether there are instances still using those templates.
116
- 'gnt-node list-storage' now also reports storage information about
117
  file-based storage types.
118
- In case of non drbd instances, export \*_SECONDARY environment variables
119
  as empty strings (and not "None") during 'instance-migrate' related hooks.
120

    
121
New features
122
~~~~~~~~~~~~
123

    
124
- KVM hypervisors can now access RBD storage directly without having to
125
  go through a block device.
126
- A new command 'gnt-cluster upgrade' was added that automates the upgrade
127
  procedure between two Ganeti versions that are both 2.10 or higher.
128
- The move-instance command can now change disk templates when moving
129
  instances, and does not require any node placement options to be
130
  specified if the destination cluster has a default iallocator.
131
- Users can now change the soundhw and cpuid settings for XEN hypervisors.
132
- Hail and hbal now have the (optional) capability of accessing average CPU
133
  load information through the monitoring deamon, and to use it to dynamically
134
  adapt the allocation of instances.
135
- Hotplug support. Introduce new option '--hotplug' to ``gnt-instance modify``
136
  so that disk and NIC modifications take effect without the need of actual
137
  reboot. There are a couple of constrains currently for this feature:
138

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

    
144
Misc changes
145
~~~~~~~~~~~~
146

    
147
- A new test framework for logical units was introduced and the test
148
  coverage for logical units was improved significantly.
149
- Opcodes are entirely generated from Haskell using the tool 'hs2py' and
150
  the module 'src/Ganeti/OpCodes.hs'.
151
- Constants are also generated from Haskell using the tool
152
  'hs2py-constants' and the module 'src/Ganeti/Constants.hs', with the
153
  exception of socket related constants, which require changing the
154
  cluster configuration file, and HVS related constants, because they
155
  are part of a port of instance queries to Haskell.  As a result, these
156
  changes will be part of the next release of Ganeti.
157

    
158
New dependencies
159
~~~~~~~~~~~~~~~~
160

    
161
The following new dependencies have been added/updated.
162

    
163
Python
164

    
165
- The version requirements for ``python-mock`` have increased to at least
166
  version 1.0.1. It is still used for testing only.
167

    
168
Since 2.10.0 rc3
169
~~~~~~~~~~~~~~~~
170

    
171
- Fix integer overflow problem in hbal
172

    
173

    
174
Version 2.10.0 rc3
175
------------------
176

    
177
*(Released Wed, 12 Feb 2014)*
178

    
179
This was the third RC release of the 2.10 series. Since 2.10.0 rc2:
180

    
181
- Improved hotplug robustness
182
- Start Ganeti daemons after ensure-dirs during upgrade
183
- Documentation improvements
184

    
185
Inherited from the 2.9 branch:
186

    
187
- Fix the RAPI instances-multi-alloc call
188
- assign unique filenames to file-based disks
189
- gracefully handle degraded non-diskless instances with 0 disks (issue 697)
190
- noded now runs with its specified group, which is the default group,
191
  defaulting to root (issue 707)
192
- make using UUIDs to identify nodes in gnt-node consistently possible
193
  (issue 703)
194

    
195

    
196
Version 2.10.0 rc2
197
------------------
198

    
199
*(Released Fri, 31 Jan 2014)*
200

    
201
This was the second RC release of the 2.10 series. Since 2.10.0 rc1:
202

    
203
- Documentation improvements
204
- Run drbdsetup syncer only on network attach
205
- Include target node in hooks nodes for migration
206
- Fix configure dirs
207
- Support post-upgrade hooks during cluster upgrades
208

    
209
Inherited from the 2.9 branch:
210

    
211
- Ensure that all the hypervisors exist in the config file (Issue 640)
212
- Correctly recognise the role as master node (Issue 687)
213
- configure: allow detection of Sphinx 1.2+ (Issue 502)
214
- gnt-instance now honors the KVM path correctly (Issue 691)
215

    
216
Inherited from the 2.8 branch:
217

    
218
- Change the list separator for the usb_devices parameter from comma to space.
219
  Commas could not work because they are already the hypervisor option
220
  separator (Issue 649)
221
- Add support for blktap2 file-driver (Issue 638)
222
- Add network tag definitions to the haskell codebase (Issue 641)
223
- Fix RAPI network tag handling
224
- Add the network tags to the tags searched by gnt-cluster search-tags
225
- Fix caching bug preventing jobs from being cancelled
226
- Start-master/stop-master was always failing if ConfD was disabled. (Issue 685)
227

    
228

    
229
Version 2.10.0 rc1
230
------------------
231

    
232
*(Released Tue, 17 Dec 2013)*
233

    
234
This was the first RC release of the 2.10 series. Since 2.10.0 beta1:
235

    
236
- All known issues in 2.10.0 beta1 have been resolved (see changes from
237
  the 2.8 branch).
238
- Improve handling of KVM runtime files from earlier Ganeti versions
239
- Documentation fixes
240

    
241
Inherited from the 2.9 branch:
242

    
243
- use custom KVM path if set for version checking
244
- SingleNotifyPipeCondition: don't share pollers
245

    
246
Inherited from the 2.8 branch:
247

    
248
- Fixed Luxi daemon socket permissions after master-failover
249
- Improve IP version detection code directly checking for colons rather than
250
  passing the family from the cluster object
251
- Fix NODE/NODE_RES locking in LUInstanceCreate by not acquiring NODE_RES locks
252
  opportunistically anymore (Issue 622)
253
- Allow link local IPv6 gateways (Issue 624)
254
- Fix error printing (Issue 616)
255
- Fix a bug in InstanceSetParams concerning names: in case no name is passed in
256
  disk modifications, keep the old one. If name=none then set disk name to
257
  None.
258
- Update build_chroot script to work with the latest hackage packages
259
- Add a packet number limit to "fping" in master-ip-setup (Issue 630)
260
- Fix evacuation out of drained node (Issue 615)
261
- Add default file_driver if missing (Issue 571)
262
- Fix job error message after unclean master shutdown (Issue 618)
263
- Lock group(s) when creating instances (Issue 621)
264
- SetDiskID() before accepting an instance (Issue 633)
265
- Allow the ext template disks to receive arbitrary parameters, both at creation
266
  time and while being modified
267
- Xen handle domain shutdown (future proofing cherry-pick)
268
- Refactor reading live data in htools (future proofing cherry-pick)
269

    
270

    
271
Version 2.10.0 beta1
272
--------------------
273

    
274
*(Released Wed, 27 Nov 2013)*
275

    
276
This was the first beta release of the 2.10 series. All important changes
277
are listed in the latest 2.10 entry.
278

    
279
Known issues
280
~~~~~~~~~~~~
281

    
282
The following issues are known to be present in the beta and will be fixed
283
before rc1.
284

    
285
- Issue 477: Wrong permissions for confd LUXI socket
286
- Issue 621: Instance related opcodes do not aquire network/group locks
287
- Issue 622: Assertion Error: Node locks differ from node resource locks
288
- Issue 623: IPv6 Masterd <-> Luxid communication error
289

    
290

    
291
Version 2.9.5
292
-------------
293

    
294
*(Released Tue, 25 Feb 2014)*
295

    
296
- Fix overflow problem in hbal that caused it to break when waiting for
297
  jobs for more than 10 minutes (issue 717)
298
- Make hbal properly handle non-LVM storage
299
- Properly export and import NIC parameters, and do so in a backwards
300
  compatible way (issue 716)
301
- Fix net-common script in case of routed mode (issue 728)
302
- Improve documentation (issues 724, 730)
303

    
304

    
305
Version 2.9.4
306
-------------
307

    
308
*(Released Mon, 10 Feb 2014)*
309

    
310
- Fix the RAPI instances-multi-alloc call
311
- assign unique filenames to file-based disks
312
- gracefully handle degraded non-diskless instances with 0 disks (issue 697)
313
- noded now runs with its specified group, which is the default group,
314
  defaulting to root (issue 707)
315
- make using UUIDs to identify nodes in gnt-node consistently possible
316
  (issue 703)
317

    
318

    
319
Version 2.9.3
320
-------------
321

    
322
*(Released Mon, 27 Jan 2014)*
323

    
324
- Ensure that all the hypervisors exist in the config file (Issue 640)
325
- Correctly recognise the role as master node (Issue 687)
326
- configure: allow detection of Sphinx 1.2+ (Issue 502)
327
- gnt-instance now honors the KVM path correctly (Issue 691)
328

    
329
Inherited from the 2.8 branch:
330

    
331
- Change the list separator for the usb_devices parameter from comma to space.
332
  Commas could not work because they are already the hypervisor option
333
  separator (Issue 649)
334
- Add support for blktap2 file-driver (Issue 638)
335
- Add network tag definitions to the haskell codebase (Issue 641)
336
- Fix RAPI network tag handling
337
- Add the network tags to the tags searched by gnt-cluster search-tags
338
- Fix caching bug preventing jobs from being cancelled
339
- Start-master/stop-master was always failing if ConfD was disabled. (Issue 685)
340

    
341

    
342
Version 2.9.2
343
-------------
344

    
345
*(Released Fri, 13 Dec 2013)*
346

    
347
- use custom KVM path if set for version checking
348
- SingleNotifyPipeCondition: don't share pollers
349

    
350
Inherited from the 2.8 branch:
351

    
352
- Fixed Luxi daemon socket permissions after master-failover
353
- Improve IP version detection code directly checking for colons rather than
354
  passing the family from the cluster object
355
- Fix NODE/NODE_RES locking in LUInstanceCreate by not acquiring NODE_RES locks
356
  opportunistically anymore (Issue 622)
357
- Allow link local IPv6 gateways (Issue 624)
358
- Fix error printing (Issue 616)
359
- Fix a bug in InstanceSetParams concerning names: in case no name is passed in
360
  disk modifications, keep the old one. If name=none then set disk name to
361
  None.
362
- Update build_chroot script to work with the latest hackage packages
363
- Add a packet number limit to "fping" in master-ip-setup (Issue 630)
364
- Fix evacuation out of drained node (Issue 615)
365
- Add default file_driver if missing (Issue 571)
366
- Fix job error message after unclean master shutdown (Issue 618)
367
- Lock group(s) when creating instances (Issue 621)
368
- SetDiskID() before accepting an instance (Issue 633)
369
- Allow the ext template disks to receive arbitrary parameters, both at creation
370
  time and while being modified
371
- Xen handle domain shutdown (future proofing cherry-pick)
372
- Refactor reading live data in htools (future proofing cherry-pick)
373

    
374

    
375
Version 2.9.1
376
-------------
377

    
378
*(Released Wed, 13 Nov 2013)*
379

    
380
- fix bug, that kept nodes offline when readding
381
- when verifying DRBD versions, ignore unavailable nodes
382
- fix bug that made the console unavailable on kvm in split-user
383
  setup (issue 608)
384
- DRBD: ensure peers are UpToDate for dual-primary (inherited 2.8.2)
385

    
386

    
387
Version 2.9.0
388
-------------
389

    
390
*(Released Tue, 5 Nov 2013)*
391

    
392
Incompatible/important changes
393
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
394

    
395
- hroller now also plans for capacity to move non-redundant instances off
396
  any node to be rebooted; the old behavior of completely ignoring any
397
  non-redundant instances can be restored by adding the --ignore-non-redundant
398
  option.
399
- The cluster option '--no-lvm-storage' was removed in favor of the new option
400
  '--enabled-disk-templates'.
401
- On instance creation, disk templates no longer need to be specified
402
  with '-t'. The default disk template will be taken from the list of
403
  enabled disk templates.
404
- The monitoring daemon is now running as root, in order to be able to collect
405
  information only available to root (such as the state of Xen instances).
406
- The ConfD client is now IPv6 compatible.
407
- File and shared file storage is no longer dis/enabled at configure time,
408
  but using the option '--enabled-disk-templates' at cluster initialization and
409
  modification.
410
- The default directories for file and shared file storage are not anymore
411
  specified at configure time, but taken from the cluster's configuration.
412
  They can be set at cluster initialization and modification with
413
  '--file-storage-dir' and '--shared-file-storage-dir'.
414
- Cluster verification now includes stricter checks regarding the
415
  default file and shared file storage directories. It now checks that
416
  the directories are explicitely allowed in the 'file-storage-paths' file and
417
  that the directories exist on all nodes.
418
- The list of allowed disk templates in the instance policy and the list
419
  of cluster-wide enabled disk templates is now checked for consistency
420
  on cluster or group modification. On cluster initialization, the ipolicy
421
  disk templates are ensured to be a subset of the cluster-wide enabled
422
  disk templates.
423

    
424
New features
425
~~~~~~~~~~~~
426

    
427
- DRBD 8.4 support. Depending on the installed DRBD version, Ganeti now uses
428
  the correct command syntax. It is possible to use different DRBD versions
429
  on different nodes as long as they are compatible to each other. This
430
  enables rolling upgrades of DRBD with no downtime. As permanent operation
431
  of different DRBD versions within a node group is discouraged,
432
  ``gnt-cluster verify`` will emit a warning if it detects such a situation.
433
- New "inst-status-xen" data collector for the monitoring daemon, providing
434
  information about the state of the xen instances on the nodes.
435
- New "lv" data collector for the monitoring daemon, collecting data about the
436
  logical volumes on the nodes, and pairing them with the name of the instances
437
  they belong to.
438
- New "diskstats" data collector, collecting the data from /proc/diskstats and
439
  presenting them over the monitoring daemon interface.
440
- The ConfD client is now IPv6 compatible.
441

    
442
New dependencies
443
~~~~~~~~~~~~~~~~
444
The following new dependencies have been added.
445

    
446
Python
447

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

    
451
Haskell
452

    
453
- ``hslogger`` (http://software.complete.org/hslogger) is now always
454
  required, even if confd is not enabled.
455

    
456
Since 2.9.0 rc3
457
~~~~~~~~~~~~~~~
458

    
459
- Correctly start/stop luxid during gnt-cluster master-failover (inherited
460
  from stable-2.8)
461
- Improved error messsages (inherited from stable-2.8)
462

    
463

    
464
Version 2.9.0 rc3
465
-----------------
466

    
467
*(Released Tue, 15 Oct 2013)*
468

    
469
The third release candidate in the 2.9 series. Since 2.9.0 rc2:
470

    
471
- in implicit configuration upgrade, match ipolicy with enabled disk templates
472
- improved harep documentation (inherited from stable-2.8)
473

    
474

    
475
Version 2.9.0 rc2
476
-----------------
477

    
478
*(Released Wed, 9 Oct 2013)*
479

    
480
The second release candidate in the 2.9 series. Since 2.9.0 rc1:
481

    
482
- Fix bug in cfgupgrade that led to failure when upgrading from 2.8 with
483
  at least one DRBD instance.
484
- Fix bug in cfgupgrade that led to an invalid 2.8 configuration after
485
  downgrading.
486

    
487

    
488
Version 2.9.0 rc1
489
-----------------
490

    
491
*(Released Tue, 1 Oct 2013)*
492

    
493
The first release candidate in the 2.9 series. Since 2.9.0 beta1:
494

    
495
- various bug fixes
496
- update of the documentation, in particular installation instructions
497
- merging of LD_* constants into DT_* constants
498
- python style changes to be compatible with newer versions of pylint
499

    
500

    
501
Version 2.9.0 beta1
502
-------------------
503

    
504
*(Released Thu, 29 Aug 2013)*
505

    
506
This was the first beta release of the 2.9 series. All important changes
507
are listed in the latest 2.9 entry.
508

    
509

    
510
Version 2.8.4
511
-------------
512

    
513
*(Released Thu, 23 Jan 2014)*
514

    
515
- Change the list separator for the usb_devices parameter from comma to space.
516
  Commas could not work because they are already the hypervisor option
517
  separator (Issue 649)
518
- Add support for blktap2 file-driver (Issue 638)
519
- Add network tag definitions to the haskell codebase (Issue 641)
520
- Fix RAPI network tag handling
521
- Add the network tags to the tags searched by gnt-cluster search-tags
522
- Fix caching bug preventing jobs from being cancelled
523
- Start-master/stop-master was always failing if ConfD was disabled. (Issue 685)
524

    
525

    
526
Version 2.8.3
527
-------------
528

    
529
*(Released Thu, 12 Dec 2013)*
530

    
531
- Fixed Luxi daemon socket permissions after master-failover
532
- Improve IP version detection code directly checking for colons rather than
533
  passing the family from the cluster object
534
- Fix NODE/NODE_RES locking in LUInstanceCreate by not acquiring NODE_RES locks
535
  opportunistically anymore (Issue 622)
536
- Allow link local IPv6 gateways (Issue 624)
537
- Fix error printing (Issue 616)
538
- Fix a bug in InstanceSetParams concerning names: in case no name is passed in
539
  disk modifications, keep the old one. If name=none then set disk name to
540
  None.
541
- Update build_chroot script to work with the latest hackage packages
542
- Add a packet number limit to "fping" in master-ip-setup (Issue 630)
543
- Fix evacuation out of drained node (Issue 615)
544
- Add default file_driver if missing (Issue 571)
545
- Fix job error message after unclean master shutdown (Issue 618)
546
- Lock group(s) when creating instances (Issue 621)
547
- SetDiskID() before accepting an instance (Issue 633)
548
- Allow the ext template disks to receive arbitrary parameters, both at creation
549
  time and while being modified
550
- Xen handle domain shutdown (future proofing cherry-pick)
551
- Refactor reading live data in htools (future proofing cherry-pick)
552

    
553

    
554
Version 2.8.2
555
-------------
556

    
557
*(Released Thu, 07 Nov 2013)*
558

    
559
- DRBD: ensure peers are UpToDate for dual-primary
560
- Improve error message for replace-disks
561
- More dependency checks at configure time
562
- Placate warnings on ganeti.outils_unittest.py
563

    
564

    
565
Version 2.8.1
566
-------------
567

    
568
*(Released Thu, 17 Oct 2013)*
569

    
570
- Correctly start/stop luxid during gnt-cluster master-failover
571
- Don't attempt IPv6 ssh in case of IPv4 cluster (Issue 595)
572
- Fix path for the job queue serial file
573
- Improved harep man page
574
- Minor documentation improvements
575

    
576

    
577
Version 2.8.0
578
-------------
579

    
580
*(Released Mon, 30 Sep 2013)*
581

    
582
Incompatible/important changes
583
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
584

    
585
- Instance policy can contain multiple instance specs, as described in
586
  the โ€œConstrained instance sizesโ€ section of :doc:`Partitioned Ganeti
587
  <design-partitioned>`. As a consequence, it's not possible to partially change
588
  or override instance specs. Bounding specs (min and max) can be specified as a
589
  whole using the new option ``--ipolicy-bounds-specs``, while standard
590
  specs use the new option ``--ipolicy-std-specs``.
591
- The output of the info command of gnt-cluster, gnt-group, gnt-node,
592
  gnt-instance is a valid YAML object.
593
- hail now honors network restrictions when allocating nodes. This led to an
594
  update of the IAllocator protocol. See the IAllocator documentation for
595
  details.
596
- confd now only answers static configuration request over the network. luxid
597
  was extracted, listens on the local LUXI socket and responds to live queries.
598
  This allows finer grained permissions if using separate users.
599

    
600
New features
601
~~~~~~~~~~~~
602

    
603
- The :doc:`Remote API <rapi>` daemon now supports a command line flag
604
  to always require authentication, ``--require-authentication``. It can
605
  be specified in ``$sysconfdir/default/ganeti``.
606
- A new cluster attribute 'enabled_disk_templates' is introduced. It will
607
  be used to manage the disk templates to be used by instances in the cluster.
608
  Initially, it will be set to a list that includes plain, drbd, if they were
609
  enabled by specifying a volume group name, and file and sharedfile, if those
610
  were enabled at configure time. Additionally, it will include all disk
611
  templates that are currently used by instances. The order of disk templates
612
  will be based on Ganeti's history of supporting them. In the future, the
613
  first entry of the list will be used as a default disk template on instance
614
  creation.
615
- ``cfgupgrade`` now supports a ``--downgrade`` option to bring the
616
  configuration back to the previous stable version.
617
- Disk templates in group ipolicy can be restored to the default value.
618
- Initial support for diskless instances and virtual clusters in QA.
619
- More QA and unit tests for instance policies.
620
- Every opcode now contains a reason trail (visible through ``gnt-job info``)
621
  describing why the opcode itself was executed.
622
- The monitoring daemon is now available. It allows users to query the cluster
623
  for obtaining information about the status of the system. The daemon is only
624
  responsible for providing the information over the network: the actual data
625
  gathering is performed by data collectors (currently, only the DRBD status
626
  collector is available).
627
- In order to help developers work on Ganeti, a new script
628
  (``devel/build_chroot``) is provided, for building a chroot that contains all
629
  the required development libraries and tools for compiling Ganeti on a Debian
630
  Squeeze system.
631
- A new tool, ``harep``, for performing self-repair and recreation of instances
632
  in Ganeti has been added.
633
- Split queries are enabled for tags, network, exports, cluster info, groups,
634
  jobs, nodes.
635
- New command ``show-ispecs-cmd`` for ``gnt-cluster`` and ``gnt-group``.
636
  It prints the command line to set the current policies, to ease
637
  changing them.
638
- Add the ``vnet_hdr`` HV parameter for KVM, to control whether the tap
639
  devices for KVM virtio-net interfaces will get created with VNET_HDR
640
  (IFF_VNET_HDR) support. If set to false, it disables offloading on the
641
  virtio-net interfaces, which prevents host kernel tainting and log
642
  flooding, when dealing with broken or malicious virtio-net drivers.
643
  It's set to true by default.
644
- Instance failover now supports a ``--cleanup`` parameter for fixing previous
645
  failures.
646
- Support 'viridian' parameter in Xen HVM
647
- Support DSA SSH keys in bootstrap
648
- To simplify the work of packaging frameworks that want to add the needed users
649
  and groups in a split-user setup themselves, at build time three files in
650
  ``doc/users`` will be generated. The ``groups`` files contains, one per line,
651
  the groups to be generated, the ``users`` file contains, one per line, the
652
  users to be generated, optionally followed by their primary group, where
653
  important. The ``groupmemberships`` file contains, one per line, additional
654
  user-group membership relations that need to be established. The syntax of
655
  these files will remain stable in all future versions.
656

    
657

    
658
New dependencies
659
~~~~~~~~~~~~~~~~
660
The following new dependencies have been added:
661

    
662
For Haskell:
663
- The ``curl`` library is not optional anymore for compiling the Haskell code.
664
- ``snap-server`` library (if monitoring is enabled).
665

    
666
For Python:
667
- The minimum Python version needed to run Ganeti is now 2.6.
668
- ``yaml`` library (only for running the QA).
669

    
670
Since 2.8.0 rc3
671
~~~~~~~~~~~~~~~
672
- Perform proper cleanup on termination of Haskell daemons
673
- Fix corner-case in handling of remaining retry time
674

    
675

    
676
Version 2.8.0 rc3
677
-----------------
678

    
679
*(Released Tue, 17 Sep 2013)*
680

    
681
- To simplify the work of packaging frameworks that want to add the needed users
682
  and groups in a split-user setup themselves, at build time three files in
683
  ``doc/users`` will be generated. The ``groups`` files contains, one per line,
684
  the groups to be generated, the ``users`` file contains, one per line, the
685
  users to be generated, optionally followed by their primary group, where
686
  important. The ``groupmemberships`` file contains, one per line, additional
687
  user-group membership relations that need to be established. The syntax of
688
  these files will remain stable in all future versions.
689
- Add a default to file-driver when unspecified over RAPI (Issue 571)
690
- Mark the DSA host pubkey as optional, and remove it during config downgrade
691
  (Issue 560)
692
- Some documentation fixes
693

    
694

    
695
Version 2.8.0 rc2
696
-----------------
697

    
698
*(Released Tue, 27 Aug 2013)*
699

    
700
The second release candidate of the 2.8 series. Since 2.8.0. rc1:
701

    
702
- Support 'viridian' parameter in Xen HVM (Issue 233)
703
- Include VCS version in ``gnt-cluster version``
704
- Support DSA SSH keys in bootstrap (Issue 338)
705
- Fix batch creation of instances
706
- Use FQDN to check master node status (Issue 551)
707
- Make the DRBD collector more failure-resilient
708

    
709

    
710
Version 2.8.0 rc1
711
-----------------
712

    
713
*(Released Fri, 2 Aug 2013)*
714

    
715
The first release candidate of the 2.8 series. Since 2.8.0 beta1:
716

    
717
- Fix upgrading/downgrading from 2.7
718
- Increase maximum RAPI message size
719
- Documentation updates
720
- Split ``confd`` between ``luxid`` and ``confd``
721
- Merge 2.7 series up to the 2.7.1 release
722
- Allow the ``modify_etc_hosts`` option to be changed
723
- Add better debugging for ``luxid`` queries
724
- Expose bulk parameter for GetJobs in RAPI client
725
- Expose missing ``network`` fields in RAPI
726
- Add some ``cluster verify`` tests
727
- Some unittest fixes
728
- Fix a malfunction in ``hspace``'s tiered allocation
729
- Fix query compatibility between haskell and python implementations
730
- Add the ``vnet_hdr`` HV parameter for KVM
731
- Add ``--cleanup`` to instance failover
732
- Change the connected groups format in ``gnt-network info`` output; it
733
  was previously displayed as a raw list by mistake. (Merged from 2.7)
734

    
735

    
736
Version 2.8.0 beta1
737
-------------------
738

    
739
*(Released Mon, 24 Jun 2013)*
740

    
741
This was the first beta release of the 2.8 series. All important changes
742
are listed in the latest 2.8 entry.
743

    
744

    
745
Version 2.7.2
746
-------------
747

    
748
*(Released Thu, 26 Sep 2013)*
749

    
750
- Change the connected groups format in ``gnt-network info`` output; it
751
  was previously displayed as a raw list by mistake
752
- Check disk template in right dict when copying
753
- Support multi-instance allocs without iallocator
754
- Fix some errors in the documentation
755
- Fix formatting of tuple in an error message
756

    
757

    
758
Version 2.7.1
759
-------------
760

    
761
*(Released Thu, 25 Jul 2013)*
762

    
763
- Add logrotate functionality in daemon-util
764
- Add logrotate example file
765
- Add missing fields to network queries over rapi
766
- Fix network object timestamps
767
- Add support for querying network timestamps
768
- Fix a typo in the example crontab
769
- Fix a documentation typo
770

    
771

    
772
Version 2.7.0
773
-------------
774

    
775
*(Released Thu, 04 Jul 2013)*
776

    
777
Incompatible/important changes
778
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
779

    
780
- Instance policies for disk size were documented to be on a per-disk
781
  basis, but hail applied them to the sum of all disks. This has been
782
  fixed.
783
- ``hbal`` will now exit with status 0 if, during job execution over
784
  LUXI, early exit has been requested and all jobs are successful;
785
  before, exit status 1 was used, which cannot be differentiated from
786
  "job error" case
787
- Compatibility with newer versions of rbd has been fixed
788
- ``gnt-instance batch-create`` has been changed to use the bulk create
789
  opcode from Ganeti. This lead to incompatible changes in the format of
790
  the JSON file. It's now not a custom dict anymore but a dict
791
  compatible with the ``OpInstanceCreate`` opcode.
792
- Parent directories for file storage need to be listed in
793
  ``$sysconfdir/ganeti/file-storage-paths`` now. ``cfgupgrade`` will
794
  write the file automatically based on old configuration values, but it
795
  can not distribute it across all nodes and the file contents should be
796
  verified. Use ``gnt-cluster copyfile
797
  $sysconfdir/ganeti/file-storage-paths`` once the cluster has been
798
  upgraded. The reason for requiring this list of paths now is that
799
  before it would have been possible to inject new paths via RPC,
800
  allowing files to be created in arbitrary locations. The RPC protocol
801
  is protected using SSL/X.509 certificates, but as a design principle
802
  Ganeti does not permit arbitrary paths to be passed.
803
- The parsing of the variants file for OSes (see
804
  :manpage:`ganeti-os-interface(7)`) has been slightly changed: now empty
805
  lines and comment lines (starting with ``#``) are ignored for better
806
  readability.
807
- The ``setup-ssh`` tool added in Ganeti 2.2 has been replaced and is no
808
  longer available. ``gnt-node add`` now invokes a new tool on the
809
  destination node, named ``prepare-node-join``, to configure the SSH
810
  daemon. Paramiko is no longer necessary to configure nodes' SSH
811
  daemons via ``gnt-node add``.
812
- Draining (``gnt-cluster queue drain``) and un-draining the job queue
813
  (``gnt-cluster queue undrain``) now affects all nodes in a cluster and
814
  the flag is not reset after a master failover.
815
- Python 2.4 has *not* been tested with this release. Using 2.6 or above
816
  is recommended. 2.6 will be mandatory from the 2.8 series.
817

    
818

    
819
New features
820
~~~~~~~~~~~~
821

    
822
- New network management functionality to support automatic allocation
823
  of IP addresses and managing of network parameters. See
824
  :manpage:`gnt-network(8)` for more details.
825
- New external storage backend, to allow managing arbitrary storage
826
  systems external to the cluster. See
827
  :manpage:`ganeti-extstorage-interface(7)`.
828
- New ``exclusive-storage`` node parameter added, restricted to
829
  nodegroup level. When it's set to true, physical disks are assigned in
830
  an exclusive fashion to instances, as documented in :doc:`Partitioned
831
  Ganeti <design-partitioned>`.  Currently, only instances using the
832
  ``plain`` disk template are supported.
833
- The KVM hypervisor has been updated with many new hypervisor
834
  parameters, including a generic one for passing arbitrary command line
835
  values. See a complete list in :manpage:`gnt-instance(8)`. It is now
836
  compatible up to qemu 1.4.
837
- A new tool, called ``mon-collector``, is the stand-alone executor of
838
  the data collectors for a monitoring system. As of this version, it
839
  just includes the DRBD data collector, that can be executed by calling
840
  ``mon-collector`` using the ``drbd`` parameter. See
841
  :manpage:`mon-collector(7)`.
842
- A new user option, :pyeval:`rapi.RAPI_ACCESS_READ`, has been added
843
  for RAPI users. It allows granting permissions to query for
844
  information to a specific user without giving
845
  :pyeval:`rapi.RAPI_ACCESS_WRITE` permissions.
846
- A new tool named ``node-cleanup`` has been added. It cleans remains of
847
  a cluster from a machine by stopping all daemons, removing
848
  certificates and ssconf files. Unless the ``--no-backup`` option is
849
  given, copies of the certificates are made.
850
- Instance creations now support the use of opportunistic locking,
851
  potentially speeding up the (parallel) creation of multiple instances.
852
  This feature is currently only available via the :doc:`RAPI
853
  <rapi>` interface and when an instance allocator is used. If the
854
  ``opportunistic_locking`` parameter is set the opcode will try to
855
  acquire as many locks as possible, but will not wait for any locks
856
  held by other opcodes. If not enough resources can be found to
857
  allocate the instance, the temporary error code
858
  :pyeval:`errors.ECODE_TEMP_NORES` is returned. The operation can be
859
  retried thereafter, with or without opportunistic locking.
860
- New experimental linux-ha resource scripts.
861
- Restricted-commands support: ganeti can now be asked (via command line
862
  or rapi) to perform commands on a node. These are passed via ganeti
863
  RPC rather than ssh. This functionality is restricted to commands
864
  specified on the ``$sysconfdir/ganeti/restricted-commands`` for security
865
  reasons. The file is not copied automatically.
866

    
867

    
868
Misc changes
869
~~~~~~~~~~~~
870

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

    
880
There are no significant changes from version 2.7.0~rc3.
881

    
882

    
883
Version 2.7.0 rc3
884
-----------------
885

    
886
*(Released Tue, 25 Jun 2013)*
887

    
888
- Fix permissions on the confd query socket (Issue 477)
889
- Fix permissions on the job archive dir (Issue 498)
890
- Fix handling of an internal exception in replace-disks (Issue 472)
891
- Fix gnt-node info handling of shortened names (Issue 497)
892
- Fix gnt-instance grow-disk when wiping is enabled
893
- Documentation improvements, and support for newer pandoc
894
- Fix hspace honoring ipolicy for disks (Issue 484)
895
- Improve handling of the ``kvm_extra`` HV parameter
896

    
897

    
898
Version 2.7.0 rc2
899
-----------------
900

    
901
*(Released Fri, 24 May 2013)*
902

    
903
- ``devel/upload`` now works when ``/var/run`` on the target nodes is a
904
  symlink.
905
- Disks added through ``gnt-instance modify`` or created through
906
  ``gnt-instance recreate-disks`` are wiped, if the
907
  ``prealloc_wipe_disks`` flag is set.
908
- If wiping newly created disks fails, the disks are removed. Also,
909
  partial failures in creating disks through ``gnt-instance modify``
910
  triggers a cleanup of the partially-created disks.
911
- Removing the master IP address doesn't fail if the address has been
912
  already removed.
913
- Fix ownership of the OS log dir
914
- Workaround missing SO_PEERCRED constant (Issue 191)
915

    
916

    
917
Version 2.7.0 rc1
918
-----------------
919

    
920
*(Released Fri, 3 May 2013)*
921

    
922
This was the first release candidate of the 2.7 series. Since beta3:
923

    
924
- Fix kvm compatibility with qemu 1.4 (Issue 389)
925
- Documentation updates (admin guide, upgrade notes, install
926
  instructions) (Issue 372)
927
- Fix gnt-group list nodes and instances count (Issue 436)
928
- Fix compilation without non-mandatory libraries (Issue 441)
929
- Fix xen-hvm hypervisor forcing nics to type 'ioemu' (Issue 247)
930
- Make confd logging more verbose at INFO level (Issue 435)
931
- Improve "networks" documentation in :manpage:`gnt-instance(8)`
932
- Fix failure path for instance storage type conversion (Issue 229)
933
- Update htools text backend documentation
934
- Improve the renew-crypto section of :manpage:`gnt-cluster(8)`
935
- Disable inter-cluster instance move for file-based instances, because
936
  it is dependant on instance export, which is not supported for
937
  file-based instances. (Issue 414)
938
- Fix gnt-job crashes on non-ascii characters (Issue 427)
939
- Fix volume group checks on non-vm-capable nodes (Issue 432)
940

    
941

    
942
Version 2.7.0 beta3
943
-------------------
944

    
945
*(Released Mon, 22 Apr 2013)*
946

    
947
This was the third beta release of the 2.7 series. Since beta2:
948

    
949
- Fix hail to verify disk instance policies on a per-disk basis (Issue 418).
950
- Fix data loss on wrong usage of ``gnt-instance move``
951
- Properly export errors in confd-based job queries
952
- Add ``users-setup`` tool
953
- Fix iallocator protocol to report 0 as a disk size for diskless
954
  instances. This avoids hail breaking when a diskless instance is
955
  present.
956
- Fix job queue directory permission problem that made confd job queries
957
  fail. This requires running an ``ensure-dirs --full-run`` on upgrade
958
  for access to archived jobs (Issue 406).
959
- Limit the sizes of networks supported by ``gnt-network`` to something
960
  between a ``/16`` and a ``/30`` to prevent memory bloat and crashes.
961
- Fix bugs in instance disk template conversion
962
- Fix GHC 7 compatibility
963
- Fix ``burnin`` install path (Issue 426).
964
- Allow very small disk grows (Issue 347).
965
- Fix a ``ganeti-noded`` memory bloat introduced in 2.5, by making sure
966
  that noded doesn't import masterd code (Issue 419).
967
- Make sure the default metavg at cluster init is the same as the vg, if
968
  unspecified (Issue 358).
969
- Fix cleanup of partially created disks (part of Issue 416)
970

    
971

    
972
Version 2.7.0 beta2
973
-------------------
974

    
975
*(Released Tue, 2 Apr 2013)*
976

    
977
This was the second beta release of the 2.7 series. Since beta1:
978

    
979
- Networks no longer have a "type" slot, since this information was
980
  unused in Ganeti: instead of it tags should be used.
981
- The rapi client now has a ``target_node`` option to MigrateInstance.
982
- Fix early exit return code for hbal (Issue 386).
983
- Fix ``gnt-instance migrate/failover -n`` (Issue 396).
984
- Fix ``rbd showmapped`` output parsing (Issue 312).
985
- Networks are now referenced indexed by UUID, rather than name. This
986
  will require running cfgupgrade, from 2.7.0beta1, if networks are in
987
  use.
988
- The OS environment now includes network information.
989
- Deleting of a network is now disallowed if any instance nic is using
990
  it, to prevent dangling references.
991
- External storage is now documented in man pages.
992
- The exclusive_storage flag can now only be set at nodegroup level.
993
- Hbal can now submit an explicit priority with its jobs.
994
- Many network related locking fixes.
995
- Bump up the required pylint version to 0.25.1.
996
- Fix the ``no_remember`` option in RAPI client.
997
- Many ipolicy related tests, qa, and fixes.
998
- Many documentation improvements and fixes.
999
- Fix building with ``--disable-file-storage``.
1000
- Fix ``-q`` option in htools, which was broken if passed more than
1001
  once.
1002
- Some haskell/python interaction improvements and fixes.
1003
- Fix iallocator in case of missing LVM storage.
1004
- Fix confd config load in case of ``--no-lvm-storage``.
1005
- The confd/query functionality is now mentioned in the security
1006
  documentation.
1007

    
1008

    
1009
Version 2.7.0 beta1
1010
-------------------
1011

    
1012
*(Released Wed, 6 Feb 2013)*
1013

    
1014
This was the first beta release of the 2.7 series. All important changes
1015
are listed in the latest 2.7 entry.
1016

    
1017

    
1018
Version 2.6.2
1019
-------------
1020

    
1021
*(Released Fri, 21 Dec 2012)*
1022

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

    
1028
A significant number of bug fixes in this release:
1029

    
1030
- Fixed disk adoption interaction with ipolicy checks.
1031
- Fixed networking issues when instances are started, stopped or
1032
  migrated, by forcing the tap device's MAC prefix to "fe" (issue 217).
1033
- Fixed the warning in cluster verify for shared storage instances not
1034
  being redundant.
1035
- Fixed removal of storage directory on shared file storage (issue 262).
1036
- Fixed validation of LVM volume group name in OpClusterSetParams
1037
  (``gnt-cluster modify``) (issue 285).
1038
- Fixed runtime memory increases (``gnt-instance modify -m``).
1039
- Fixed live migration under Xen's ``xl`` mode.
1040
- Fixed ``gnt-instance console`` with ``xl``.
1041
- Fixed building with newer Haskell compiler/libraries.
1042
- Fixed PID file writing in Haskell daemons (confd); this prevents
1043
  restart issues if confd was launched manually (outside of
1044
  ``daemon-util``) while another copy of it was running
1045
- Fixed a type error when doing live migrations with KVM (issue 297) and
1046
  the error messages for failing migrations have been improved.
1047
- Fixed opcode validation for the out-of-band commands (``gnt-node
1048
  power``).
1049
- Fixed a type error when unsetting OS hypervisor parameters (issue
1050
  311); now it's possible to unset all OS-specific hypervisor
1051
  parameters.
1052
- Fixed the ``dry-run`` mode for many operations: verification of
1053
  results was over-zealous but didn't take into account the ``dry-run``
1054
  operation, resulting in "wrong" failures.
1055
- Fixed bash completion in ``gnt-job list`` when the job queue has
1056
  hundreds of entries; especially with older ``bash`` versions, this
1057
  results in significant CPU usage.
1058

    
1059
And lastly, a few other improvements have been made:
1060

    
1061
- Added option to force master-failover without voting (issue 282).
1062
- Clarified error message on lock conflict (issue 287).
1063
- Logging of newly submitted jobs has been improved (issue 290).
1064
- Hostname checks have been made uniform between instance rename and
1065
  create (issue 291).
1066
- The ``--submit`` option is now supported by ``gnt-debug delay``.
1067
- Shutting down the master daemon by sending SIGTERM now stops it from
1068
  processing jobs waiting for locks; instead, those jobs will be started
1069
  once again after the master daemon is started the next time (issue
1070
  296).
1071
- Support for Xen's ``xl`` program has been improved (besides the fixes
1072
  above).
1073
- Reduced logging noise in the Haskell confd daemon (only show one log
1074
  entry for each config reload, instead of two).
1075
- Several man page updates and typo fixes.
1076

    
1077

    
1078
Version 2.6.1
1079
-------------
1080

    
1081
*(Released Fri, 12 Oct 2012)*
1082

    
1083
A small bugfix release. Among the bugs fixed:
1084

    
1085
- Fixed double use of ``PRIORITY_OPT`` in ``gnt-node migrate``, that
1086
  made the command unusable.
1087
- Commands that issue many jobs don't fail anymore just because some jobs
1088
  take so long that other jobs are archived.
1089
- Failures during ``gnt-instance reinstall`` are reflected by the exit
1090
  status.
1091
- Issue 190 fixed. Check for DRBD in cluster verify is enabled only when
1092
  DRBD is enabled.
1093
- When ``always_failover`` is set, ``--allow-failover`` is not required
1094
  in migrate commands anymore.
1095
- ``bash_completion`` works even if extglob is disabled.
1096
- Fixed bug with locks that made failover for RDB-based instances fail.
1097
- Fixed bug in non-mirrored instance allocation that made Ganeti choose
1098
  a random node instead of one based on the allocator metric.
1099
- Support for newer versions of pylint and pep8.
1100
- Hail doesn't fail anymore when trying to add an instance of type
1101
  ``file``, ``sharedfile`` or ``rbd``.
1102
- Added new Makefile target to rebuild the whole distribution, so that
1103
  all files are included.
1104

    
1105

    
1106
Version 2.6.0
1107
-------------
1108

    
1109
*(Released Fri, 27 Jul 2012)*
1110

    
1111

    
1112
.. attention:: The ``LUXI`` protocol has been made more consistent
1113
   regarding its handling of command arguments. This, however, leads to
1114
   incompatibility issues with previous versions. Please ensure that you
1115
   restart Ganeti daemons soon after the upgrade, otherwise most
1116
   ``LUXI`` calls (job submission, setting/resetting the drain flag,
1117
   pausing/resuming the watcher, cancelling and archiving jobs, querying
1118
   the cluster configuration) will fail.
1119

    
1120

    
1121
New features
1122
~~~~~~~~~~~~
1123

    
1124
Instance run status
1125
+++++++++++++++++++
1126

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

    
1131
The rational behind this is that an instance being โ€œdownโ€ can have
1132
different meanings:
1133

    
1134
- it could be down during a reboot
1135
- it could be temporarily be down for a reinstall
1136
- or it could be down because it is deprecated and kept just for its
1137
  disk
1138

    
1139
The previous Boolean state was making it difficult to do capacity
1140
calculations: should Ganeti reserve memory for a down instance? Now, the
1141
tri-state field makes it clear:
1142

    
1143
- in ``up`` and ``down`` state, all resources are reserved for the
1144
  instance, and it can be at any time brought up if it is down
1145
- in ``offline`` state, only disk space is reserved for it, but not
1146
  memory or CPUs
1147

    
1148
The field can have an extra use: since the transition between ``up`` and
1149
``down`` and vice-versus is done via ``gnt-instance start/stop``, but
1150
transition between ``offline`` and ``down`` is done via ``gnt-instance
1151
modify``, it is possible to given different rights to users. For
1152
example, owners of an instance could be allowed to start/stop it, but
1153
not transition it out of the offline state.
1154

    
1155
Instance policies and specs
1156
+++++++++++++++++++++++++++
1157

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

    
1165
In order to improve these workflows and to allow for example better
1166
per-node group differentiation, we introduced instance specs, which
1167
allow declaring:
1168

    
1169
- minimum instance disk size, disk count, memory size, cpu count
1170
- maximum values for the above metrics
1171
- and โ€œstandardโ€ values (used in ``hspace`` to calculate the standard
1172
  sized instances)
1173

    
1174
The minimum/maximum values can be also customised at node-group level,
1175
for example allowing more powerful hardware to support bigger instance
1176
memory sizes.
1177

    
1178
Beside the instance specs, there are a few other settings belonging to
1179
the instance policy framework. It is possible now to customise, per
1180
cluster and node-group:
1181

    
1182
- the list of allowed disk templates
1183
- the maximum ratio of VCPUs per PCPUs (to control CPU oversubscription)
1184
- the maximum ratio of instance to spindles (see below for more
1185
  information) for local storage
1186

    
1187
All these together should allow all tools that talk to Ganeti to know
1188
what are the ranges of allowed values for instances and the
1189
over-subscription that is allowed.
1190

    
1191
For the VCPU/PCPU ratio, we already have the VCPU configuration from the
1192
instance configuration, and the physical CPU configuration from the
1193
node. For the spindle ratios however, we didn't track before these
1194
values, so new parameters have been added:
1195

    
1196
- a new node parameter ``spindle_count``, defaults to 1, customisable at
1197
  node group or node level
1198
- at new backend parameter (for instances), ``spindle_use`` defaults to 1
1199

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

    
1204
Instance migration behaviour
1205
++++++++++++++++++++++++++++
1206

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

    
1211
To allow the tools to work consistently over such instances (without
1212
having to hard-code instance names), a new backend parameter
1213
``always_failover`` has been added to control the migration/failover
1214
behaviour. When set to True, all migration requests for an instance will
1215
instead fall-back to failover.
1216

    
1217
Instance memory ballooning
1218
++++++++++++++++++++++++++
1219

    
1220
Initial support for memory ballooning has been added. The memory for an
1221
instance is no longer fixed (backend parameter ``memory``), but instead
1222
can vary between minimum and maximum values (backend parameters
1223
``minmem`` and ``maxmem``). Currently we only change an instance's
1224
memory when:
1225

    
1226
- live migrating or failing over and instance and the target node
1227
  doesn't have enough memory
1228
- user requests changing the memory via ``gnt-instance modify
1229
  --runtime-memory``
1230

    
1231
Instance CPU pinning
1232
++++++++++++++++++++
1233

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

    
1242
Disk parameters
1243
+++++++++++++++
1244

    
1245
Another area in which Ganeti was not customisable were the parameters
1246
used for storage configuration, e.g. how many stripes to use for LVM,
1247
DRBD resync configuration, etc.
1248

    
1249
To improve this area, we've added disks parameters, which are
1250
customisable at cluster and node group level, and which allow to
1251
specify various parameters for disks (DRBD has the most parameters
1252
currently), for example:
1253

    
1254
- DRBD resync algorithm and parameters (e.g. speed)
1255
- the default VG for meta-data volumes for DRBD
1256
- number of stripes for LVM (plain disk template)
1257
- the RBD pool
1258

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

    
1264
Rados block device support
1265
++++++++++++++++++++++++++
1266

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

    
1272
Master IP setup
1273
+++++++++++++++
1274

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

    
1280
To allow the master IP to function well in more complex cases, the
1281
system was reworked as follows:
1282

    
1283
- a master IP netmask setting has been added
1284
- the master IP activation/turn-down code was moved from the node daemon
1285
  to a separate script
1286
- whether to run the Ganeti-supplied master IP script or a user-supplied
1287
  on is a ``gnt-cluster init`` setting
1288

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

    
1293
SPICE support
1294
+++++++++++++
1295

    
1296
The `SPICE <http://www.linux-kvm.org/page/SPICE>`_ support has been
1297
improved.
1298

    
1299
It is now possible to use TLS-protected connections, and when renewing
1300
or changing the cluster certificates (via ``gnt-cluster renew-crypto``,
1301
it is now possible to specify spice or spice CA certificates. Also, it
1302
is possible to configure a password for SPICE sessions via the
1303
hypervisor parameter ``spice_password_file``.
1304

    
1305
There are also new parameters to control the compression and streaming
1306
options (e.g. ``spice_image_compression``, ``spice_streaming_video``,
1307
etc.). For details, see the man page :manpage:`gnt-instance(8)` and look
1308
for the spice parameters.
1309

    
1310
Lastly, it is now possible to see the SPICE connection information via
1311
``gnt-instance console``.
1312

    
1313
OVF converter
1314
+++++++++++++
1315

    
1316
A new tool (``tools/ovfconverter``) has been added that supports
1317
conversion between Ganeti and the `Open Virtualization Format
1318
<http://en.wikipedia.org/wiki/Open_Virtualization_Format>`_ (both to and
1319
from).
1320

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

    
1324
Confd daemon changes
1325
++++++++++++++++++++
1326

    
1327
The configuration query daemon (``ganeti-confd``) is now optional, and
1328
has been rewritten in Haskell; whether to use the daemon at all, use the
1329
Python (default) or the Haskell version is selectable at configure time
1330
via the ``--enable-confd`` parameter, which can take one of the
1331
``haskell``, ``python`` or ``no`` values. If not used, disabling the
1332
daemon will result in a smaller footprint; for larger systems, we
1333
welcome feedback on the Haskell version which might become the default
1334
in future versions.
1335

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

    
1339

    
1340
User interface changes
1341
~~~~~~~~~~~~~~~~~~~~~~
1342

    
1343
We have replaced the ``--disks`` option of ``gnt-instance
1344
replace-disks`` with a more flexible ``--disk`` option, which allows
1345
adding and removing disks at arbitrary indices (Issue 188). Furthermore,
1346
disk size and mode can be changed upon recreation (via ``gnt-instance
1347
recreate-disks``, which accepts the same ``--disk`` option).
1348

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

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

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

    
1361
A new command ``list-drbd`` has been added to the ``gnt-node`` script to
1362
support debugging of DRBD issues on nodes. It provides a mapping of DRBD
1363
minors to instance name.
1364

    
1365
API changes
1366
~~~~~~~~~~~
1367

    
1368
RAPI coverage has improved, with (for example) new resources for
1369
recreate-disks, node power-cycle, etc.
1370

    
1371
Compatibility
1372
~~~~~~~~~~~~~
1373

    
1374
There is partial support for ``xl`` in the Xen hypervisor; feedback is
1375
welcome.
1376

    
1377
Python 2.7 is better supported, and after Ganeti 2.6 we will investigate
1378
whether to still support Python 2.4 or move to Python 2.6 as minimum
1379
required version.
1380

    
1381
Support for Fedora has been slightly improved; the provided example
1382
init.d script should work better on it and the INSTALL file should
1383
document the needed dependencies.
1384

    
1385
Internal changes
1386
~~~~~~~~~~~~~~~~
1387

    
1388
The deprecated ``QueryLocks`` LUXI request has been removed. Use
1389
``Query(what=QR_LOCK, ...)`` instead.
1390

    
1391
The LUXI requests :pyeval:`luxi.REQ_QUERY_JOBS`,
1392
:pyeval:`luxi.REQ_QUERY_INSTANCES`, :pyeval:`luxi.REQ_QUERY_NODES`,
1393
:pyeval:`luxi.REQ_QUERY_GROUPS`, :pyeval:`luxi.REQ_QUERY_EXPORTS` and
1394
:pyeval:`luxi.REQ_QUERY_TAGS` are deprecated and will be removed in a
1395
future version. :pyeval:`luxi.REQ_QUERY` should be used instead.
1396

    
1397
RAPI client: ``CertificateError`` now derives from
1398
``GanetiApiError``. This should make it more easy to handle Ganeti
1399
errors.
1400

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

    
1405
The QA scripts now depend on Python 2.5 or above (the main code base
1406
still works with Python 2.4).
1407

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

    
1412
A number of bugs has been fixed in the cluster merge tool.
1413

    
1414
``x509`` certification verification (used in import-export) has been
1415
changed to allow the same clock skew as permitted by the cluster
1416
verification. This will remove some rare but hard to diagnose errors in
1417
import-export.
1418

    
1419

    
1420
Version 2.6.0 rc4
1421
-----------------
1422

    
1423
*(Released Thu, 19 Jul 2012)*
1424

    
1425
Very few changes from rc4 to the final release, only bugfixes:
1426

    
1427
- integrated fixes from release 2.5.2 (fix general boot flag for KVM
1428
  instance, fix CDROM booting for KVM instances)
1429
- fixed node group modification of node parameters
1430
- fixed issue in LUClusterVerifyGroup with multi-group clusters
1431
- fixed generation of bash completion to ensure a stable ordering
1432
- fixed a few typos
1433

    
1434

    
1435
Version 2.6.0 rc3
1436
-----------------
1437

    
1438
*(Released Fri, 13 Jul 2012)*
1439

    
1440
Third release candidate for 2.6. The following changes were done from
1441
rc3 to rc4:
1442

    
1443
- Fixed ``UpgradeConfig`` w.r.t. to disk parameters on disk objects.
1444
- Fixed an inconsistency in the LUXI protocol with the provided
1445
  arguments (NOT backwards compatible)
1446
- Fixed a bug with node groups ipolicy where ``min`` was greater than
1447
  the cluster ``std`` value
1448
- Implemented a new ``gnt-node list-drbd`` call to list DRBD minors for
1449
  easier instance debugging on nodes (requires ``hconfd`` to work)
1450

    
1451

    
1452
Version 2.6.0 rc2
1453
-----------------
1454

    
1455
*(Released Tue, 03 Jul 2012)*
1456

    
1457
Second release candidate for 2.6. The following changes were done from
1458
rc2 to rc3:
1459

    
1460
- Fixed ``gnt-cluster verify`` regarding ``master-ip-script`` on non
1461
  master candidates
1462
- Fixed a RAPI regression on missing beparams/memory
1463
- Fixed redistribution of files on offline nodes
1464
- Added possibility to run activate-disks even though secondaries are
1465
  offline. With this change it relaxes also the strictness on some other
1466
  commands which use activate disks internally:
1467
  * ``gnt-instance start|reboot|rename|backup|export``
1468
- Made it possible to remove safely an instance if its secondaries are
1469
  offline
1470
- Made it possible to reinstall even though secondaries are offline
1471

    
1472

    
1473
Version 2.6.0 rc1
1474
-----------------
1475

    
1476
*(Released Mon, 25 Jun 2012)*
1477

    
1478
First release candidate for 2.6. The following changes were done from
1479
rc1 to rc2:
1480

    
1481
- Fixed bugs with disk parameters and ``rbd`` templates as well as
1482
  ``instance_os_add``
1483
- Made ``gnt-instance modify`` more consistent regarding new NIC/Disk
1484
  behaviour. It supports now the modify operation
1485
- ``hcheck`` implemented to analyze cluster health and possibility of
1486
  improving health by rebalance
1487
- ``hbal`` has been improved in dealing with split instances
1488

    
1489

    
1490
Version 2.6.0 beta2
1491
-------------------
1492

    
1493
*(Released Mon, 11 Jun 2012)*
1494

    
1495
Second beta release of 2.6. The following changes were done from beta2
1496
to rc1:
1497

    
1498
- Fixed ``daemon-util`` with non-root user models
1499
- Fixed creation of plain instances with ``--no-wait-for-sync``
1500
- Fix wrong iv_names when running ``cfgupgrade``
1501
- Export more information in RAPI group queries
1502
- Fixed bug when changing instance network interfaces
1503
- Extended burnin to do NIC changes
1504
- query: Added ``<``, ``>``, ``<=``, ``>=`` comparison operators
1505
- Changed default for DRBD barriers
1506
- Fixed DRBD error reporting for syncer rate
1507
- Verify the options on disk parameters
1508

    
1509
And of course various fixes to documentation and improved unittests and
1510
QA.
1511

    
1512

    
1513
Version 2.6.0 beta1
1514
-------------------
1515

    
1516
*(Released Wed, 23 May 2012)*
1517

    
1518
First beta release of 2.6. The following changes were done from beta1 to
1519
beta2:
1520

    
1521
- integrated patch for distributions without ``start-stop-daemon``
1522
- adapted example init.d script to work on Fedora
1523
- fixed log handling in Haskell daemons
1524
- adapted checks in the watcher for pycurl linked against libnss
1525
- add partial support for ``xl`` instead of ``xm`` for Xen
1526
- fixed a type issue in cluster verification
1527
- fixed ssconf handling in the Haskell code (was breaking confd in IPv6
1528
  clusters)
1529

    
1530
Plus integrated fixes from the 2.5 branch:
1531

    
1532
- fixed ``kvm-ifup`` to use ``/bin/bash``
1533
- fixed parallel build failures
1534
- KVM live migration when using a custom keymap
1535

    
1536

    
1537
Version 2.5.2
1538
-------------
1539

    
1540
*(Released Tue, 24 Jul 2012)*
1541

    
1542
A small bugfix release, with no new features:
1543

    
1544
- fixed bash-isms in kvm-ifup, for compatibility with systems which use a
1545
  different default shell (e.g. Debian, Ubuntu)
1546
- fixed KVM startup and live migration with a custom keymap (fixes Issue
1547
  243 and Debian bug #650664)
1548
- fixed compatibility with KVM versions that don't support multiple boot
1549
  devices (fixes Issue 230 and Debian bug #624256)
1550

    
1551
Additionally, a few fixes were done to the build system (fixed parallel
1552
build failures) and to the unittests (fixed race condition in test for
1553
FileID functions, and the default enable/disable mode for QA test is now
1554
customisable).
1555

    
1556

    
1557
Version 2.5.1
1558
-------------
1559

    
1560
*(Released Fri, 11 May 2012)*
1561

    
1562
A small bugfix release.
1563

    
1564
The main issues solved are on the topic of compatibility with newer LVM
1565
releases:
1566

    
1567
- fixed parsing of ``lv_attr`` field
1568
- adapted to new ``vgreduce --removemissing`` behaviour where sometimes
1569
  the ``--force`` flag is needed
1570

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

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

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

    
1583
The fix for issue 201 (Preserve bridge MTU in KVM ifup script) was
1584
integrated into this release.
1585

    
1586
Finally, a few other miscellaneous changes were done (no new features,
1587
just small improvements):
1588

    
1589
- Fix ``gnt-group --help`` display
1590
- Fix hardcoded Xen kernel path
1591
- Fix grow-disk handling of invalid units
1592
- Update synopsis for ``gnt-cluster repair-disk-sizes``
1593
- Accept both PUT and POST in noded (makes future upgrade to 2.6 easier)
1594

    
1595

    
1596
Version 2.5.0
1597
-------------
1598

    
1599
*(Released Thu, 12 Apr 2012)*
1600

    
1601
Incompatible/important changes and bugfixes
1602
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1603

    
1604
- The default of the ``/2/instances/[instance_name]/rename`` RAPI
1605
  resource's ``ip_check`` parameter changed from ``True`` to ``False``
1606
  to match the underlying LUXI interface.
1607
- The ``/2/nodes/[node_name]/evacuate`` RAPI resource was changed to use
1608
  body parameters, see :doc:`RAPI documentation <rapi>`. The server does
1609
  not maintain backwards-compatibility as the underlying operation
1610
  changed in an incompatible way. The RAPI client can talk to old
1611
  servers, but it needs to be told so as the return value changed.
1612
- When creating file-based instances via RAPI, the ``file_driver``
1613
  parameter no longer defaults to ``loop`` and must be specified.
1614
- The deprecated ``bridge`` NIC parameter is no longer supported. Use
1615
  ``link`` instead.
1616
- Support for the undocumented and deprecated RAPI instance creation
1617
  request format version 0 has been dropped. Use version 1, supported
1618
  since Ganeti 2.1.3 and :doc:`documented <rapi>`, instead.
1619
- Pyparsing 1.4.6 or above is required, see :doc:`installation
1620
  documentation <install>`.
1621
- The "cluster-verify" hooks are now executed per group by the
1622
  ``OP_CLUSTER_VERIFY_GROUP`` opcode. This maintains the same behavior
1623
  if you just run ``gnt-cluster verify``, which generates one opcode per
1624
  group.
1625
- The environment as passed to the OS scripts is cleared, and thus no
1626
  environment variables defined in the node daemon's environment will be
1627
  inherited by the scripts.
1628
- The :doc:`iallocator <iallocator>` mode ``multi-evacuate`` has been
1629
  deprecated.
1630
- :doc:`New iallocator modes <design-multi-reloc>` have been added to
1631
  support operations involving multiple node groups.
1632
- Offline nodes are ignored when failing over an instance.
1633
- Support for KVM version 1.0, which changed the version reporting format
1634
  from 3 to 2 digits.
1635
- TCP/IP ports used by DRBD disks are returned to a pool upon instance
1636
  removal.
1637
- ``Makefile`` is now compatible with Automake 1.11.2
1638
- Includes all bugfixes made in the 2.4 series
1639

    
1640
New features
1641
~~~~~~~~~~~~
1642

    
1643
- The ganeti-htools project has been merged into the ganeti-core source
1644
  tree and will be built as part of Ganeti (see :doc:`install-quick`).
1645
- Implemented support for :doc:`shared storage <design-shared-storage>`.
1646
- Add support for disks larger than 2 TB in ``lvmstrap`` by supporting
1647
  GPT-style partition tables (requires `parted
1648
  <http://www.gnu.org/s/parted/>`_).
1649
- Added support for floppy drive and 2nd CD-ROM drive in KVM hypervisor.
1650
- Allowed adding tags on instance creation.
1651
- Export instance tags to hooks (``INSTANCE_TAGS``, see :doc:`hooks`)
1652
- Allow instances to be started in a paused state, enabling the user to
1653
  see the complete console output on boot using the console.
1654
- Added new hypervisor flag to control default reboot behaviour
1655
  (``reboot_behavior``).
1656
- Added support for KVM keymaps (hypervisor parameter ``keymap``).
1657
- Improved out-of-band management support:
1658

    
1659
  - Added ``gnt-node health`` command reporting the health status of
1660
    nodes.
1661
  - Added ``gnt-node power`` command to manage power status of nodes.
1662
  - Added command for emergency power-off (EPO), ``gnt-cluster epo``.
1663

    
1664
- Instance migration can fall back to failover if instance is not
1665
  running.
1666
- Filters can be used when listing nodes, instances, groups and locks;
1667
  see :manpage:`ganeti(7)` manpage.
1668
- Added post-execution status as variables to :doc:`hooks <hooks>`
1669
  environment.
1670
- Instance tags are exported/imported together with the instance.
1671
- When given an explicit job ID, ``gnt-job info`` will work for archived
1672
  jobs.
1673
- Jobs can define dependencies on other jobs (not yet supported via
1674
  RAPI or command line, but used by internal commands and usable via
1675
  LUXI).
1676

    
1677
  - Lock monitor (``gnt-debug locks``) shows jobs waiting for
1678
    dependencies.
1679

    
1680
- Instance failover is now available as a RAPI resource
1681
  (``/2/instances/[instance_name]/failover``).
1682
- ``gnt-instance info`` defaults to static information if primary node
1683
  is offline.
1684
- Opcodes have a new ``comment`` attribute.
1685
- Added basic SPICE support to KVM hypervisor.
1686
- ``tools/ganeti-listrunner`` allows passing of arguments to executable.
1687

    
1688
Node group improvements
1689
~~~~~~~~~~~~~~~~~~~~~~~
1690

    
1691
- ``gnt-cluster verify`` has been modified to check groups separately,
1692
  thereby improving performance.
1693
- Node group support has been added to ``gnt-cluster verify-disks``,
1694
  which now operates per node group.
1695
- Watcher has been changed to work better with node groups.
1696

    
1697
  - One process and state file per node group.
1698
  - Slow watcher in one group doesn't block other group's watcher.
1699

    
1700
- Added new command, ``gnt-group evacuate``, to move all instances in a
1701
  node group to other groups.
1702
- Added ``gnt-instance change-group`` to move an instance to another
1703
  node group.
1704
- ``gnt-cluster command`` and ``gnt-cluster copyfile`` now support
1705
  per-group operations.
1706
- Node groups can be tagged.
1707
- Some operations switch from an exclusive to a shared lock as soon as
1708
  possible.
1709
- Instance's primary and secondary nodes' groups are now available as
1710
  query fields (``pnode.group``, ``pnode.group.uuid``, ``snodes.group``
1711
  and ``snodes.group.uuid``).
1712

    
1713
Misc
1714
~~~~
1715

    
1716
- Numerous updates to documentation and manpages.
1717

    
1718
  - :doc:`RAPI <rapi>` documentation now has detailed parameter
1719
    descriptions.
1720
  - Some opcode/job results are now also documented, see :doc:`RAPI
1721
    <rapi>`.
1722

    
1723
- A lockset's internal lock is now also visible in lock monitor.
1724
- Log messages from job queue workers now contain information about the
1725
  opcode they're processing.
1726
- ``gnt-instance console`` no longer requires the instance lock.
1727
- A short delay when waiting for job changes reduces the number of LUXI
1728
  requests significantly.
1729
- DRBD metadata volumes are overwritten with zeros during disk creation.
1730
- Out-of-band commands no longer acquire the cluster lock in exclusive
1731
  mode.
1732
- ``devel/upload`` now uses correct permissions for directories.
1733

    
1734

    
1735
Version 2.5.0 rc6
1736
-----------------
1737

    
1738
*(Released Fri, 23 Mar 2012)*
1739

    
1740
This was the sixth release candidate of the 2.5 series.
1741

    
1742

    
1743
Version 2.5.0 rc5
1744
-----------------
1745

    
1746
*(Released Mon, 9 Jan 2012)*
1747

    
1748
This was the fifth release candidate of the 2.5 series.
1749

    
1750

    
1751
Version 2.5.0 rc4
1752
-----------------
1753

    
1754
*(Released Thu, 27 Oct 2011)*
1755

    
1756
This was the fourth release candidate of the 2.5 series.
1757

    
1758

    
1759
Version 2.5.0 rc3
1760
-----------------
1761

    
1762
*(Released Wed, 26 Oct 2011)*
1763

    
1764
This was the third release candidate of the 2.5 series.
1765

    
1766

    
1767
Version 2.5.0 rc2
1768
-----------------
1769

    
1770
*(Released Tue, 18 Oct 2011)*
1771

    
1772
This was the second release candidate of the 2.5 series.
1773

    
1774

    
1775
Version 2.5.0 rc1
1776
-----------------
1777

    
1778
*(Released Tue, 4 Oct 2011)*
1779

    
1780
This was the first release candidate of the 2.5 series.
1781

    
1782

    
1783
Version 2.5.0 beta3
1784
-------------------
1785

    
1786
*(Released Wed, 31 Aug 2011)*
1787

    
1788
This was the third beta release of the 2.5 series.
1789

    
1790

    
1791
Version 2.5.0 beta2
1792
-------------------
1793

    
1794
*(Released Mon, 22 Aug 2011)*
1795

    
1796
This was the second beta release of the 2.5 series.
1797

    
1798

    
1799
Version 2.5.0 beta1
1800
-------------------
1801

    
1802
*(Released Fri, 12 Aug 2011)*
1803

    
1804
This was the first beta release of the 2.5 series.
1805

    
1806

    
1807
Version 2.4.5
1808
-------------
1809

    
1810
*(Released Thu, 27 Oct 2011)*
1811

    
1812
- Fixed bug when parsing command line parameter values ending in
1813
  backslash
1814
- Fixed assertion error after unclean master shutdown
1815
- Disable HTTP client pool for RPC, significantly reducing memory usage
1816
  of master daemon
1817
- Fixed queue archive creation with wrong permissions
1818

    
1819

    
1820
Version 2.4.4
1821
-------------
1822

    
1823
*(Released Tue, 23 Aug 2011)*
1824

    
1825
Small bug-fixes:
1826

    
1827
- Fixed documentation for importing with ``--src-dir`` option
1828
- Fixed a bug in ``ensure-dirs`` with queue/archive permissions
1829
- Fixed a parsing issue with DRBD 8.3.11 in the Linux kernel
1830

    
1831

    
1832
Version 2.4.3
1833
-------------
1834

    
1835
*(Released Fri, 5 Aug 2011)*
1836

    
1837
Many bug-fixes and a few small features:
1838

    
1839
- Fixed argument order in ``ReserveLV`` and ``ReserveMAC`` which caused
1840
  issues when you tried to add an instance with two MAC addresses in one
1841
  request
1842
- KVM: fixed per-instance stored UID value
1843
- KVM: configure bridged NICs at migration start
1844
- KVM: Fix a bug where instance will not start with never KVM versions
1845
  (>= 0.14)
1846
- Added OS search path to ``gnt-cluster info``
1847
- Fixed an issue with ``file_storage_dir`` where you were forced to
1848
  provide an absolute path, but the documentation states it is a
1849
  relative path, the documentation was right
1850
- Added a new parameter to instance stop/start called ``--no-remember``
1851
  that will make the state change to not be remembered
1852
- Implemented ``no_remember`` at RAPI level
1853
- Improved the documentation
1854
- Node evacuation: don't call IAllocator if node is already empty
1855
- Fixed bug in DRBD8 replace disks on current nodes
1856
- Fixed bug in recreate-disks for DRBD instances
1857
- Moved assertion checking locks in ``gnt-instance replace-disks``
1858
  causing it to abort with not owning the right locks for some situation
1859
- Job queue: Fixed potential race condition when cancelling queued jobs
1860
- Fixed off-by-one bug in job serial generation
1861
- ``gnt-node volumes``: Fix instance names
1862
- Fixed aliases in bash completion
1863
- Fixed a bug in reopening log files after being sent a SIGHUP
1864
- Added a flag to burnin to allow specifying VCPU count
1865
- Bugfixes to non-root Ganeti configuration
1866

    
1867

    
1868
Version 2.4.2
1869
-------------
1870

    
1871
*(Released Thu, 12 May 2011)*
1872

    
1873
Many bug-fixes and a few new small features:
1874

    
1875
- Fixed a bug related to log opening failures
1876
- Fixed a bug in instance listing with orphan instances
1877
- Fixed a bug which prevented resetting the cluster-level node parameter
1878
  ``oob_program`` to the default
1879
- Many fixes related to the ``cluster-merge`` tool
1880
- Fixed a race condition in the lock monitor, which caused failures
1881
  during (at least) creation of many instances in parallel
1882
- Improved output for gnt-job info
1883
- Removed the quiet flag on some ssh calls which prevented debugging
1884
  failures
1885
- Improved the N+1 failure messages in cluster verify by actually
1886
  showing the memory values (needed and available)
1887
- Increased lock attempt timeouts so that when executing long operations
1888
  (e.g. DRBD replace-disks) other jobs do not enter 'blocking acquire'
1889
  too early and thus prevent the use of the 'fair' mechanism
1890
- Changed instance query data (``gnt-instance info``) to not acquire
1891
  locks unless needed, thus allowing its use on locked instance if only
1892
  static information is asked for
1893
- Improved behaviour with filesystems that do not support rename on an
1894
  opened file
1895
- Fixed the behaviour of ``prealloc_wipe_disks`` cluster parameter which
1896
  kept locks on all nodes during the wipe, which is unneeded
1897
- Fixed ``gnt-watcher`` handling of errors during hooks execution
1898
- Fixed bug in ``prealloc_wipe_disks`` with small disk sizes (less than
1899
  10GiB) which caused the wipe to fail right at the end in some cases
1900
- Fixed master IP activation when doing master failover with no-voting
1901
- Fixed bug in ``gnt-node add --readd`` which allowed the re-adding of
1902
  the master node itself
1903
- Fixed potential data-loss in under disk full conditions, where Ganeti
1904
  wouldn't check correctly the return code and would consider
1905
  partially-written files 'correct'
1906
- Fixed bug related to multiple VGs and DRBD disk replacing
1907
- Added new disk parameter ``metavg`` that allows placement of the meta
1908
  device for DRBD in a different volume group
1909
- Fixed error handling in the node daemon when the system libc doesn't
1910
  have major number 6 (i.e. if ``libc.so.6`` is not the actual libc)
1911
- Fixed lock release during replace-disks, which kept cluster-wide locks
1912
  when doing disk replaces with an iallocator script
1913
- Added check for missing bridges in cluster verify
1914
- Handle EPIPE errors while writing to the terminal better, so that
1915
  piping the output to e.g. ``less`` doesn't cause a backtrace
1916
- Fixed rare case where a ^C during Luxi calls could have been
1917
  interpreted as server errors, instead of simply terminating
1918
- Fixed a race condition in LUGroupAssignNodes (``gnt-group
1919
  assign-nodes``)
1920
- Added a few more parameters to the KVM hypervisor, allowing a second
1921
  CDROM, custom disk type for CDROMs and a floppy image
1922
- Removed redundant message in instance rename when the name is given
1923
  already as a FQDN
1924
- Added option to ``gnt-instance recreate-disks`` to allow creating the
1925
  disks on new nodes, allowing recreation when the original instance
1926
  nodes are completely gone
1927
- Added option when converting disk templates to DRBD to skip waiting
1928
  for the resync, in order to make the instance available sooner
1929
- Added two new variables to the OS scripts environment (containing the
1930
  instance's nodes)
1931
- Made the root_path and optional parameter for the xen-pvm hypervisor,
1932
  to allow use of ``pvgrub`` as bootloader
1933
- Changed the instance memory modifications to only check out-of-memory
1934
  conditions on memory increases, and turned the secondary node warnings
1935
  into errors (they can still be overridden via ``--force``)
1936
- Fixed the handling of a corner case when the Python installation gets
1937
  corrupted (e.g. a bad disk) while ganeti-noded is running and we try
1938
  to execute a command that doesn't exist
1939
- Fixed a bug in ``gnt-instance move`` (LUInstanceMove) when the primary
1940
  node of the instance returned failures during instance shutdown; this
1941
  adds the option ``--ignore-consistency`` to gnt-instance move
1942

    
1943
And as usual, various improvements to the error messages, documentation
1944
and man pages.
1945

    
1946

    
1947
Version 2.4.1
1948
-------------
1949

    
1950
*(Released Wed, 09 Mar 2011)*
1951

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

    
1955
The release fixes that bug (nothing else changed).
1956

    
1957

    
1958
Version 2.4.0
1959
-------------
1960

    
1961
*(Released Mon, 07 Mar 2011)*
1962

    
1963
Final 2.4.0 release. Just a few small fixes:
1964

    
1965
- Fixed RAPI node evacuate
1966
- Fixed the kvm-ifup script
1967
- Fixed internal error handling for special job cases
1968
- Updated man page to specify the escaping feature for options
1969

    
1970

    
1971
Version 2.4.0 rc3
1972
-----------------
1973

    
1974
*(Released Mon, 28 Feb 2011)*
1975

    
1976
A critical fix for the ``prealloc_wipe_disks`` feature: it is possible
1977
that this feature wiped the disks of the wrong instance, leading to loss
1978
of data.
1979

    
1980
Other changes:
1981

    
1982
- Fixed title of query field containing instance name
1983
- Expanded the glossary in the documentation
1984
- Fixed one unittest (internal issue)
1985

    
1986

    
1987
Version 2.4.0 rc2
1988
-----------------
1989

    
1990
*(Released Mon, 21 Feb 2011)*
1991

    
1992
A number of bug fixes plus just a couple functionality changes.
1993

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

    
1999
- Offline resource: ``*``
2000
- Unavailable/not applicable: ``-``
2001
- Data missing (RPC failure): ``?``
2002
- Unknown field: ``??``
2003

    
2004
Another user-visible change is the addition of ``--force-join`` to
2005
``gnt-node add``.
2006

    
2007
As for bug fixes:
2008

    
2009
- ``tools/cluster-merge`` has seen many fixes and is now enabled again
2010
- Fixed regression in RAPI/instance reinstall where all parameters were
2011
  required (instead of optional)
2012
- Fixed ``gnt-cluster repair-disk-sizes``, was broken since Ganeti 2.2
2013
- Fixed iallocator usage (offline nodes were not considered offline)
2014
- Fixed ``gnt-node list`` with respect to non-vm_capable nodes
2015
- Fixed hypervisor and OS parameter validation with respect to
2016
  non-vm_capable nodes
2017
- Fixed ``gnt-cluster verify`` with respect to offline nodes (mostly
2018
  cosmetic)
2019
- Fixed ``tools/listrunner`` with respect to agent-based usage
2020

    
2021

    
2022
Version 2.4.0 rc1
2023
-----------------
2024

    
2025
*(Released Fri,  4 Feb 2011)*
2026

    
2027
Many changes and fixes since the beta1 release. While there were some
2028
internal changes, the code has been mostly stabilised for the RC
2029
release.
2030

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

    
2035
Note: the 2.4 and up versions of Ganeti are not compatible with the
2036
0.2.x branch of ganeti-htools. You need to upgrade to
2037
ganeti-htools-0.3.0 (or later).
2038

    
2039
Regressions fixed from 2.3
2040
~~~~~~~~~~~~~~~~~~~~~~~~~~
2041

    
2042
- Fixed the ``gnt-cluster verify-disks`` command
2043
- Made ``gnt-cluster verify-disks`` work in parallel (as opposed to
2044
  serially on nodes)
2045
- Fixed disk adoption breakage
2046
- Fixed wrong headers in instance listing for field aliases
2047

    
2048
Other bugs fixed
2049
~~~~~~~~~~~~~~~~
2050

    
2051
- Fixed corner case in KVM handling of NICs
2052
- Fixed many cases of wrong handling of non-vm_capable nodes
2053
- Fixed a bug where a missing instance symlink was not possible to
2054
  recreate with any ``gnt-*`` command (now ``gnt-instance
2055
  activate-disks`` does it)
2056
- Fixed the volume group name as reported by ``gnt-cluster
2057
  verify-disks``
2058
- Increased timeouts for the import-export code, hopefully leading to
2059
  fewer aborts due network or instance timeouts
2060
- Fixed bug in ``gnt-node list-storage``
2061
- Fixed bug where not all daemons were started on cluster
2062
  initialisation, but only at the first watcher run
2063
- Fixed many bugs in the OOB implementation
2064
- Fixed watcher behaviour in presence of instances with offline
2065
  secondaries
2066
- Fixed instance list output for instances running on the wrong node
2067
- a few fixes to the cluster-merge tool, but it still cannot merge
2068
  multi-node groups (currently it is not recommended to use this tool)
2069

    
2070

    
2071
Improvements
2072
~~~~~~~~~~~~
2073

    
2074
- Improved network configuration for the KVM hypervisor
2075
- Added e1000 as a supported NIC for Xen-HVM
2076
- Improved the lvmstrap tool to also be able to use partitions, as
2077
  opposed to full disks
2078
- Improved speed of disk wiping (the cluster parameter
2079
  ``prealloc_wipe_disks``, so that it has a low impact on the total time
2080
  of instance creations
2081
- Added documentation for the OS parameters
2082
- Changed ``gnt-instance deactivate-disks`` so that it can work if the
2083
  hypervisor is not responding
2084
- Added display of blacklisted and hidden OS information in
2085
  ``gnt-cluster info``
2086
- Extended ``gnt-cluster verify`` to also validate hypervisor, backend,
2087
  NIC and node parameters, which might create problems with currently
2088
  invalid (but undetected) configuration files, but prevents validation
2089
  failures when unrelated parameters are modified
2090
- Changed cluster initialisation to wait for the master daemon to become
2091
  available
2092
- Expanded the RAPI interface:
2093

    
2094
  - Added config redistribution resource
2095
  - Added activation/deactivation of instance disks
2096
  - Added export of console information
2097

    
2098
- Implemented log file reopening on SIGHUP, which allows using
2099
  logrotate(8) for the Ganeti log files
2100
- Added a basic OOB helper script as an example
2101

    
2102

    
2103
Version 2.4.0 beta1
2104
-------------------
2105

    
2106
*(Released Fri, 14 Jan 2011)*
2107

    
2108
User-visible
2109
~~~~~~~~~~~~
2110

    
2111
- Fixed timezone issues when formatting timestamps
2112
- Added support for node groups, available via ``gnt-group`` and other
2113
  commands
2114
- Added out-of-band framework and management, see :doc:`design
2115
  document <design-oob>`
2116
- Removed support for roman numbers from ``gnt-node list`` and
2117
  ``gnt-instance list``.
2118
- Allowed modification of master network interface via ``gnt-cluster
2119
  modify --master-netdev``
2120
- Accept offline secondaries while shutting down instance disks
2121
- Added ``blockdev_prefix`` parameter to Xen PVM and HVM hypervisors
2122
- Added support for multiple LVM volume groups
2123
- Avoid sorting nodes for ``gnt-node list`` if specific nodes are
2124
  requested
2125
- Added commands to list available fields:
2126

    
2127
  - ``gnt-node list-fields``
2128
  - ``gnt-group list-fields``
2129
  - ``gnt-instance list-fields``
2130

    
2131
- Updated documentation and man pages
2132

    
2133
Integration
2134
~~~~~~~~~~~
2135

    
2136
- Moved ``rapi_users`` file into separate directory, now named
2137
  ``.../ganeti/rapi/users``, ``cfgupgrade`` moves the file and creates a
2138
  symlink
2139
- Added new tool for running commands on many machines,
2140
  ``tools/ganeti-listrunner``
2141
- Implemented more verbose result in ``OpInstanceConsole`` opcode, also
2142
  improving the ``gnt-instance console`` output
2143
- Allowed customisation of disk index separator at ``configure`` time
2144
- Export node group allocation policy to :doc:`iallocator <iallocator>`
2145
- Added support for non-partitioned md disks in ``lvmstrap``
2146
- Added script to gracefully power off KVM instances
2147
- Split ``utils`` module into smaller parts
2148
- Changed query operations to return more detailed information, e.g.
2149
  whether an information is unavailable due to an offline node. To use
2150
  this new functionality, the LUXI call ``Query`` must be used. Field
2151
  information is now stored by the master daemon and can be retrieved
2152
  using ``QueryFields``. Instances, nodes and groups can also be queried
2153
  using the new opcodes ``OpQuery`` and ``OpQueryFields`` (not yet
2154
  exposed via RAPI). The following commands make use of this
2155
  infrastructure change:
2156

    
2157
  - ``gnt-group list``
2158
  - ``gnt-group list-fields``
2159
  - ``gnt-node list``
2160
  - ``gnt-node list-fields``
2161
  - ``gnt-instance list``
2162
  - ``gnt-instance list-fields``
2163
  - ``gnt-debug locks``
2164

    
2165
Remote API
2166
~~~~~~~~~~
2167

    
2168
- New RAPI resources (see :doc:`rapi`):
2169

    
2170
  - ``/2/modify``
2171
  - ``/2/groups``
2172
  - ``/2/groups/[group_name]``
2173
  - ``/2/groups/[group_name]/assign-nodes``
2174
  - ``/2/groups/[group_name]/modify``
2175
  - ``/2/groups/[group_name]/rename``
2176
  - ``/2/instances/[instance_name]/disk/[disk_index]/grow``
2177

    
2178
- RAPI changes:
2179

    
2180
  - Implemented ``no_install`` for instance creation
2181
  - Implemented OS parameters for instance reinstallation, allowing
2182
    use of special settings on reinstallation (e.g. for preserving data)
2183

    
2184
Misc
2185
~~~~
2186

    
2187
- Added IPv6 support in import/export
2188
- Pause DRBD synchronization while wiping disks on instance creation
2189
- Updated unittests and QA scripts
2190
- Improved network parameters passed to KVM
2191
- Converted man pages from docbook to reStructuredText
2192

    
2193

    
2194
Version 2.3.1
2195
-------------
2196

    
2197
*(Released Mon, 20 Dec 2010)*
2198

    
2199
Released version 2.3.1~rc1 without any changes.
2200

    
2201

    
2202
Version 2.3.1 rc1
2203
-----------------
2204

    
2205
*(Released Wed, 1 Dec 2010)*
2206

    
2207
- impexpd: Disable OpenSSL compression in socat if possible (backport
2208
  from master, commit e90739d625b, see :doc:`installation guide
2209
  <install-quick>` for details)
2210
- Changed unittest coverage report to exclude test scripts
2211
- Added script to check version format
2212

    
2213

    
2214
Version 2.3.0
2215
-------------
2216

    
2217
*(Released Wed, 1 Dec 2010)*
2218

    
2219
Released version 2.3.0~rc1 without any changes.
2220

    
2221

    
2222
Version 2.3.0 rc1
2223
-----------------
2224

    
2225
*(Released Fri, 19 Nov 2010)*
2226

    
2227
A number of bugfixes and documentation updates:
2228

    
2229
- Update ganeti-os-interface documentation
2230
- Fixed a bug related to duplicate MACs or similar items which should be
2231
  unique
2232
- Fix breakage in OS state modify
2233
- Reinstall instance: disallow offline secondaries (fixes bug related to
2234
  OS changing but reinstall failing)
2235
- plus all the other fixes between 2.2.1 and 2.2.2
2236

    
2237

    
2238
Version 2.3.0 rc0
2239
-----------------
2240

    
2241
*(Released Tue, 2 Nov 2010)*
2242

    
2243
- Fixed clearing of the default iallocator using ``gnt-cluster modify``
2244
- Fixed master failover race with watcher
2245
- Fixed a bug in ``gnt-node modify`` which could lead to an inconsistent
2246
  configuration
2247
- Accept previously stopped instance for export with instance removal
2248
- Simplify and extend the environment variables for instance OS scripts
2249
- Added new node flags, ``master_capable`` and ``vm_capable``
2250
- Added optional instance disk wiping prior during allocation. This is a
2251
  cluster-wide option and can be set/modified using
2252
  ``gnt-cluster {init,modify} --prealloc-wipe-disks``.
2253
- Added IPv6 support, see :doc:`design document <design-2.3>` and
2254
  :doc:`install-quick`
2255
- Added a new watcher option (``--ignore-pause``)
2256
- Added option to ignore offline node on instance start/stop
2257
  (``--ignore-offline``)
2258
- Allow overriding OS parameters with ``gnt-instance reinstall``
2259
- Added ability to change node's secondary IP address using ``gnt-node
2260
  modify``
2261
- Implemented privilege separation for all daemons except
2262
  ``ganeti-noded``, see ``configure`` options
2263
- Complain if an instance's disk is marked faulty in ``gnt-cluster
2264
  verify``
2265
- Implemented job priorities (see ``ganeti(7)`` manpage)
2266
- Ignore failures while shutting down instances during failover from
2267
  offline node
2268
- Exit daemon's bootstrap process only once daemon is ready
2269
- Export more information via ``LUInstanceQuery``/remote API
2270
- Improved documentation, QA and unittests
2271
- RAPI daemon now watches ``rapi_users`` all the time and doesn't need a
2272
  restart if the file was created or changed
2273
- Added LUXI protocol version sent with each request and response,
2274
  allowing detection of server/client mismatches
2275
- Moved the Python scripts among gnt-* and ganeti-* into modules
2276
- Moved all code related to setting up SSH to an external script,
2277
  ``setup-ssh``
2278
- Infrastructure changes for node group support in future versions
2279

    
2280

    
2281
Version 2.2.2
2282
-------------
2283

    
2284
*(Released Fri, 19 Nov 2010)*
2285

    
2286
A few small bugs fixed, and some improvements to the build system:
2287

    
2288
- Fix documentation regarding conversion to drbd
2289
- Fix validation of parameters in cluster modify (``gnt-cluster modify
2290
  -B``)
2291
- Fix error handling in node modify with multiple changes
2292
- Allow remote imports without checked names
2293

    
2294

    
2295
Version 2.2.1
2296
-------------
2297

    
2298
*(Released Tue, 19 Oct 2010)*
2299

    
2300
- Disable SSL session ID cache in RPC client
2301

    
2302

    
2303
Version 2.2.1 rc1
2304
-----------------
2305

    
2306
*(Released Thu, 14 Oct 2010)*
2307

    
2308
- Fix interaction between Curl/GnuTLS and the Python's HTTP server
2309
  (thanks Apollon Oikonomopoulos!), finally allowing the use of Curl
2310
  with GnuTLS
2311
- Fix problems with interaction between Curl and Python's HTTP server,
2312
  resulting in increased speed in many RPC calls
2313
- Improve our release script to prevent breakage with older aclocal and
2314
  Python 2.6
2315

    
2316

    
2317
Version 2.2.1 rc0
2318
-----------------
2319

    
2320
*(Released Thu, 7 Oct 2010)*
2321

    
2322
- Fixed issue 125, replace hardcoded "xenvg" in ``gnt-cluster`` with
2323
  value retrieved from master
2324
- Added support for blacklisted or hidden OS definitions
2325
- Added simple lock monitor (accessible via (``gnt-debug locks``)
2326
- Added support for -mem-path in KVM hypervisor abstraction layer
2327
- Allow overriding instance parameters in tool for inter-cluster
2328
  instance moves (``tools/move-instance``)
2329
- Improved opcode summaries (e.g. in ``gnt-job list``)
2330
- Improve consistency of OS listing by sorting it
2331
- Documentation updates
2332

    
2333

    
2334
Version 2.2.0.1
2335
---------------
2336

    
2337
*(Released Fri, 8 Oct 2010)*
2338

    
2339
- Rebuild with a newer autotools version, to fix python 2.6 compatibility
2340

    
2341

    
2342
Version 2.2.0
2343
-------------
2344

    
2345
*(Released Mon, 4 Oct 2010)*
2346

    
2347
- Fixed regression in ``gnt-instance rename``
2348

    
2349

    
2350
Version 2.2.0 rc2
2351
-----------------
2352

    
2353
*(Released Wed, 22 Sep 2010)*
2354

    
2355
- Fixed OS_VARIANT variable for OS scripts
2356
- Fixed cluster tag operations via RAPI
2357
- Made ``setup-ssh`` exit with non-zero code if an error occurred
2358
- Disabled RAPI CA checks in watcher
2359

    
2360

    
2361
Version 2.2.0 rc1
2362
-----------------
2363

    
2364
*(Released Mon, 23 Aug 2010)*
2365

    
2366
- Support DRBD versions of the format "a.b.c.d"
2367
- Updated manpages
2368
- Re-introduce support for usage from multiple threads in RAPI client
2369
- Instance renames and modify via RAPI
2370
- Work around race condition between processing and archival in job
2371
  queue
2372
- Mark opcodes following failed one as failed, too
2373
- Job field ``lock_status`` was removed due to difficulties making it
2374
  work with the changed job queue in Ganeti 2.2; a better way to monitor
2375
  locks is expected for a later 2.2.x release
2376
- Fixed dry-run behaviour with many commands
2377
- Support ``ssh-agent`` again when adding nodes
2378
- Many additional bugfixes
2379

    
2380

    
2381
Version 2.2.0 rc0
2382
-----------------
2383

    
2384
*(Released Fri, 30 Jul 2010)*
2385

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

    
2395
  python -c 'import pycurl; print pycurl.version'
2396

    
2397
can be used to determine the libraries PycURL and cURL are linked
2398
against.
2399

    
2400
Other significant changes:
2401

    
2402
- Rewrote much of the internals of the job queue, in order to achieve
2403
  better parallelism; this decouples job query operations from the job
2404
  processing, and it should allow much nicer behaviour of the master
2405
  daemon under load, and it also has uncovered some long-standing bugs
2406
  related to the job serialisation (now fixed)
2407
- Added a default iallocator setting to the cluster parameters,
2408
  eliminating the need to always pass nodes or an iallocator for
2409
  operations that require selection of new node(s)
2410
- Added experimental support for the LXC virtualization method
2411
- Added support for OS parameters, which allows the installation of
2412
  instances to pass parameter to OS scripts in order to customise the
2413
  instance
2414
- Added a hypervisor parameter controlling the migration type (live or
2415
  non-live), since hypervisors have various levels of reliability; this
2416
  has renamed the 'live' parameter to 'mode'
2417
- Added a cluster parameter ``reserved_lvs`` that denotes reserved
2418
  logical volumes, meaning that cluster verify will ignore them and not
2419
  flag their presence as errors
2420
- The watcher will now reset the error count for failed instances after
2421
  8 hours, thus allowing self-healing if the problem that caused the
2422
  instances to be down/fail to start has cleared in the meantime
2423
- Added a cluster parameter ``drbd_usermode_helper`` that makes Ganeti
2424
  check for, and warn, if the drbd module parameter ``usermode_helper``
2425
  is not consistent with the cluster-wide setting; this is needed to
2426
  make diagnose easier of failed drbd creations
2427
- Started adding base IPv6 support, but this is not yet
2428
  enabled/available for use
2429
- Rename operations (cluster, instance) will now return the new name,
2430
  which is especially useful if a short name was passed in
2431
- Added support for instance migration in RAPI
2432
- Added a tool to pre-configure nodes for the SSH setup, before joining
2433
  them to the cluster; this will allow in the future a simplified model
2434
  for node joining (but not yet fully enabled in 2.2); this needs the
2435
  paramiko python library
2436
- Fixed handling of name-resolving errors
2437
- Fixed consistency of job results on the error path
2438
- Fixed master-failover race condition when executed multiple times in
2439
  sequence
2440
- Fixed many bugs related to the job queue (mostly introduced during the
2441
  2.2 development cycle, so not all are impacting 2.1)
2442
- Fixed instance migration with missing disk symlinks
2443
- Fixed handling of unknown jobs in ``gnt-job archive``
2444
- And many other small fixes/improvements
2445

    
2446
Internal changes:
2447

    
2448
- Enhanced both the unittest and the QA coverage
2449
- Switched the opcode validation to a generic model, and extended the
2450
  validation to all opcode parameters
2451
- Changed more parts of the code that write shell scripts to use the
2452
  same class for this
2453
- Switched the master daemon to use the asyncore library for the Luxi
2454
  server endpoint
2455

    
2456

    
2457
Version 2.2.0 beta0
2458
-------------------
2459

    
2460
*(Released Thu, 17 Jun 2010)*
2461

    
2462
- Added tool (``move-instance``) and infrastructure to move instances
2463
  between separate clusters (see :doc:`separate documentation
2464
  <move-instance>` and :doc:`design document <design-2.2>`)
2465
- Added per-request RPC timeout
2466
- RAPI now requires a Content-Type header for requests with a body (e.g.
2467
  ``PUT`` or ``POST``) which must be set to ``application/json`` (see
2468
  :rfc:`2616` (HTTP/1.1), section 7.2.1)
2469
- ``ganeti-watcher`` attempts to restart ``ganeti-rapi`` if RAPI is not
2470
  reachable
2471
- Implemented initial support for running Ganeti daemons as separate
2472
  users, see configure-time flags ``--with-user-prefix`` and
2473
  ``--with-group-prefix`` (only ``ganeti-rapi`` is supported at this
2474
  time)
2475
- Instances can be removed after export (``gnt-backup export
2476
  --remove-instance``)
2477
- Self-signed certificates generated by Ganeti now use a 2048 bit RSA
2478
  key (instead of 1024 bit)
2479
- Added new cluster configuration file for cluster domain secret
2480
- Import/export now use SSL instead of SSH
2481
- Added support for showing estimated time when exporting an instance,
2482
  see the ``ganeti-os-interface(7)`` manpage and look for
2483
  ``EXP_SIZE_FD``
2484

    
2485

    
2486
Version 2.1.8
2487
-------------
2488

    
2489
*(Released Tue, 16 Nov 2010)*
2490

    
2491
Some more bugfixes. Unless critical bugs occur, this will be the last
2492
2.1 release:
2493

    
2494
- Fix case of MAC special-values
2495
- Fix mac checker regex
2496
- backend: Fix typo causing "out of range" error
2497
- Add missing --units in gnt-instance list man page
2498

    
2499

    
2500
Version 2.1.7
2501
-------------
2502

    
2503
*(Released Tue, 24 Aug 2010)*
2504

    
2505
Bugfixes only:
2506
  - Don't ignore secondary node silently on non-mirrored disk templates
2507
    (issue 113)
2508
  - Fix --master-netdev arg name in gnt-cluster(8) (issue 114)
2509
  - Fix usb_mouse parameter breaking with vnc_console (issue 109)
2510
  - Properly document the usb_mouse parameter
2511
  - Fix path in ganeti-rapi(8) (issue 116)
2512
  - Adjust error message when the ganeti user's .ssh directory is
2513
    missing
2514
  - Add same-node-check when changing the disk template to drbd
2515

    
2516

    
2517
Version 2.1.6
2518
-------------
2519

    
2520
*(Released Fri, 16 Jul 2010)*
2521

    
2522
Bugfixes only:
2523
  - Add an option to only select some reboot types during qa/burnin.
2524
    (on some hypervisors consequent reboots are not supported)
2525
  - Fix infrequent race condition in master failover. Sometimes the old
2526
    master ip address would be still detected as up for a short time
2527
    after it was removed, causing failover to fail.
2528
  - Decrease mlockall warnings when the ctypes module is missing. On
2529
    Python 2.4 we support running even if no ctypes module is installed,
2530
    but we were too verbose about this issue.
2531
  - Fix building on old distributions, on which man doesn't have a
2532
    --warnings option.
2533
  - Fix RAPI not to ignore the MAC address on instance creation
2534
  - Implement the old instance creation format in the RAPI client.
2535

    
2536

    
2537
Version 2.1.5
2538
-------------
2539

    
2540
*(Released Thu, 01 Jul 2010)*
2541

    
2542
A small bugfix release:
2543
  - Fix disk adoption: broken by strict --disk option checking in 2.1.4
2544
  - Fix batch-create: broken in the whole 2.1 series due to a lookup on
2545
    a non-existing option
2546
  - Fix instance create: the --force-variant option was ignored
2547
  - Improve pylint 0.21 compatibility and warnings with Python 2.6
2548
  - Fix modify node storage with non-FQDN arguments
2549
  - Fix RAPI client to authenticate under Python 2.6 when used
2550
    for more than 5 requests needing authentication
2551
  - Fix gnt-instance modify -t (storage) giving a wrong error message
2552
    when converting a non-shutdown drbd instance to plain
2553

    
2554

    
2555
Version 2.1.4
2556
-------------
2557

    
2558
*(Released Fri, 18 Jun 2010)*
2559

    
2560
A small bugfix release:
2561

    
2562
  - Fix live migration of KVM instances started with older Ganeti
2563
    versions which had fewer hypervisor parameters
2564
  - Fix gnt-instance grow-disk on down instances
2565
  - Fix an error-reporting bug during instance migration
2566
  - Better checking of the ``--net`` and ``--disk`` values, to avoid
2567
    silently ignoring broken ones
2568
  - Fix an RPC error reporting bug affecting, for example, RAPI client
2569
    users
2570
  - Fix bug triggered by different API version os-es on different nodes
2571
  - Fix a bug in instance startup with custom hvparams: OS level
2572
    parameters would fail to be applied.
2573
  - Fix the RAPI client under Python 2.6 (but more work is needed to
2574
    make it work completely well with OpenSSL)
2575
  - Fix handling of errors when resolving names from DNS
2576

    
2577

    
2578
Version 2.1.3
2579
-------------
2580

    
2581
*(Released Thu, 3 Jun 2010)*
2582

    
2583
A medium sized development cycle. Some new features, and some
2584
fixes/small improvements/cleanups.
2585

    
2586
Significant features
2587
~~~~~~~~~~~~~~~~~~~~
2588

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

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

    
2599
KVM: Add instance chrooting feature. If you use privilege dropping for
2600
your VMs you can also now force them to chroot to an empty directory,
2601
before starting the emulated guest.
2602

    
2603
KVM: Add maximum migration bandwith and maximum downtime tweaking
2604
support (requires a new-enough version of qemu-kvm).
2605

    
2606
Cluster verify will now warn if the master node doesn't have the master
2607
ip configured on it.
2608

    
2609
Add a new (incompatible) instance creation request format to RAPI which
2610
supports all parameters (previously only a subset was supported, and it
2611
wasn't possible to extend the old format to accomodate all the new
2612
features. The old format is still supported, and a client can check for
2613
this feature, before using it, by checking for its presence in the
2614
``features`` RAPI resource.
2615

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

    
2620
Other changes
2621
~~~~~~~~~~~~~
2622

    
2623
As usual many internal code refactorings, documentation updates, and
2624
such. Among others:
2625

    
2626
  - Lots of improvements and cleanups to the experimental Remote API
2627
    (RAPI) client library.
2628
  - A new unit test suite for the core daemon libraries.
2629
  - A fix to creating missing directories makes sure the umask is not
2630
    applied anymore. This enforces the same directory permissions
2631
    everywhere.
2632
  - Better handling terminating daemons with ctrl+c (used when running
2633
    them in debugging mode).
2634
  - Fix a race condition in live migrating a KVM instance, when stat()
2635
    on the old proc status file returned EINVAL, which is an unexpected
2636
    value.
2637
  - Fixed manpage checking with newer man and utf-8 charachters. But now
2638
    you need the en_US.UTF-8 locale enabled to build Ganeti from git.
2639

    
2640

    
2641
Version 2.1.2.1
2642
---------------
2643

    
2644
*(Released Fri, 7 May 2010)*
2645

    
2646
Fix a bug which prevented untagged KVM instances from starting.
2647

    
2648

    
2649
Version 2.1.2
2650
-------------
2651

    
2652
*(Released Fri, 7 May 2010)*
2653

    
2654
Another release with a long development cycle, during which many
2655
different features were added.
2656

    
2657
Significant features
2658
~~~~~~~~~~~~~~~~~~~~
2659

    
2660
The KVM hypervisor now can run the individual instances as non-root, to
2661
reduce the impact of a VM being hijacked due to bugs in the
2662
hypervisor. It is possible to run all instances as a single (non-root)
2663
user, to manually specify a user for each instance, or to dynamically
2664
allocate a user out of a cluster-wide pool to each instance, with the
2665
guarantee that no two instances will run under the same user ID on any
2666
given node.
2667

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

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

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

    
2682
Another disk improvement is the possibility to convert between redundant
2683
(DRBD) and plain (LVM) disk configuration for an instance. This should
2684
allow better scalability (starting with one node and growing the
2685
cluster, or shrinking a two-node cluster to one node).
2686

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

    
2696
Instance export/import now will reuse the original instance
2697
specifications for all parameters; that means exporting an instance,
2698
deleting it and the importing it back should give an almost identical
2699
instance. Note that the default import behaviour has changed from
2700
before, where it created only one NIC; now it recreates the original
2701
number of NICs.
2702

    
2703
Cluster verify has added a few new checks: SSL certificates validity,
2704
/etc/hosts consistency across the cluster, etc.
2705

    
2706
Other changes
2707
~~~~~~~~~~~~~
2708

    
2709
As usual, many internal changes were done, documentation fixes,
2710
etc. Among others:
2711

    
2712
- Fixed cluster initialization with disabled cluster storage (regression
2713
  introduced in 2.1.1)
2714
- File-based storage supports growing the disks
2715
- Fixed behaviour of node role changes
2716
- Fixed cluster verify for some corner cases, plus a general rewrite of
2717
  cluster verify to allow future extension with more checks
2718
- Fixed log spamming by watcher and node daemon (regression introduced
2719
  in 2.1.1)
2720
- Fixed possible validation issues when changing the list of enabled
2721
  hypervisors
2722
- Fixed cleanup of /etc/hosts during node removal
2723
- Fixed RAPI response for invalid methods
2724
- Fixed bug with hashed passwords in ``ganeti-rapi`` daemon
2725
- Multiple small improvements to the KVM hypervisor (VNC usage, booting
2726
  from ide disks, etc.)
2727
- Allow OS changes without re-installation (to record a changed OS
2728
  outside of Ganeti, or to allow OS renames)
2729
- Allow instance creation without OS installation (useful for example if
2730
  the OS will be installed manually, or restored from a backup not in
2731
  Ganeti format)
2732
- Implemented option to make cluster ``copyfile`` use the replication
2733
  network
2734
- Added list of enabled hypervisors to ssconf (possibly useful for
2735
  external scripts)
2736
- Added a new tool (``tools/cfgupgrade12``) that allows upgrading from
2737
  1.2 clusters
2738
- A partial form of node re-IP is possible via node readd, which now
2739
  allows changed node primary IP
2740
- Command line utilities now show an informational message if the job is
2741
  waiting for a lock
2742
- The logs of the master daemon now show the PID/UID/GID of the
2743
  connected client
2744

    
2745

    
2746
Version 2.1.1
2747
-------------
2748

    
2749
*(Released Fri, 12 Mar 2010)*
2750

    
2751
During the 2.1.0 long release candidate cycle, a lot of improvements and
2752
changes have accumulated with were released later as 2.1.1.
2753

    
2754
Major changes
2755
~~~~~~~~~~~~~
2756

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

    
2768
Another important change is increased validation of node and instance
2769
names. This might create problems in special cases, if invalid host
2770
names are being used.
2771

    
2772
Also, a new layer of hypervisor parameters has been added, that sits at
2773
OS level between the cluster defaults and the instance ones. This allows
2774
customisation of virtualization parameters depending on the installed
2775
OS. For example instances with OS 'X' may have a different KVM kernel
2776
(or any other parameter) than the cluster defaults. This is intended to
2777
help managing a multiple OSes on the same cluster, without manual
2778
modification of each instance's parameters.
2779

    
2780
A tool for merging clusters, ``cluster-merge``, has been added in the
2781
tools sub-directory.
2782

    
2783
Bug fixes
2784
~~~~~~~~~
2785

    
2786
- Improved the int/float conversions that should make the code more
2787
  robust in face of errors from the node daemons
2788
- Fixed the remove node code in case of internal configuration errors
2789
- Fixed the node daemon behaviour in face of inconsistent queue
2790
  directory (e.g. read-only file-system where we can't open the files
2791
  read-write, etc.)
2792
- Fixed the behaviour of gnt-node modify for master candidate demotion;
2793
  now it either aborts cleanly or, if given the new "auto_promote"
2794
  parameter, will automatically promote other nodes as needed
2795
- Fixed compatibility with (unreleased yet) Python 2.6.5 that would
2796
  completely prevent Ganeti from working
2797
- Fixed bug for instance export when not all disks were successfully
2798
  exported
2799
- Fixed behaviour of node add when the new node is slow in starting up
2800
  the node daemon
2801
- Fixed handling of signals in the LUXI client, which should improve
2802
  behaviour of command-line scripts
2803
- Added checks for invalid node/instance names in the configuration (now
2804
  flagged during cluster verify)
2805
- Fixed watcher behaviour for disk activation errors
2806
- Fixed two potentially endless loops in http library, which led to the
2807
  RAPI daemon hanging and consuming 100% CPU in some cases
2808
- Fixed bug in RAPI daemon related to hashed passwords
2809
- Fixed bug for unintended qemu-level bridging of multi-NIC KVM
2810
  instances
2811
- Enhanced compatibility with non-Debian OSes, but not using absolute
2812
  path in some commands and allowing customisation of the ssh
2813
  configuration directory
2814
- Fixed possible future issue with new Python versions by abiding to the
2815
  proper use of ``__slots__`` attribute on classes
2816
- Added checks that should prevent directory traversal attacks
2817
- Many documentation fixes based on feedback from users
2818

    
2819
New features
2820
~~~~~~~~~~~~
2821

    
2822
- Added an "early_release" more for instance replace disks and node
2823
  evacuate, where we release locks earlier and thus allow higher
2824
  parallelism within the cluster
2825
- Added watcher hooks, intended to allow the watcher to restart other
2826
  daemons (e.g. from the ganeti-nbma project), but they can be used of
2827
  course for any other purpose
2828
- Added a compile-time disable for DRBD barriers, to increase
2829
  performance if the administrator trusts the power supply or the
2830
  storage system to not lose writes
2831
- Added the option of using syslog for logging instead of, or in
2832
  addition to, Ganeti's own log files
2833
- Removed boot restriction for paravirtual NICs for KVM, recent versions
2834
  can indeed boot from a paravirtual NIC
2835
- Added a generic debug level for many operations; while this is not
2836
  used widely yet, it allows one to pass the debug value all the way to
2837
  the OS scripts
2838
- Enhanced the hooks environment for instance moves (failovers,
2839
  migrations) where the primary/secondary nodes changed during the
2840
  operation, by adding {NEW,OLD}_{PRIMARY,SECONDARY} vars
2841
- Enhanced data validations for many user-supplied values; one important
2842
  item is the restrictions imposed on instance and node names, which
2843
  might reject some (invalid) host names
2844
- Add a configure-time option to disable file-based storage, if it's not
2845
  needed; this allows greater security separation between the master
2846
  node and the other nodes from the point of view of the inter-node RPC
2847
  protocol
2848
- Added user notification in interactive tools if job is waiting in the
2849
  job queue or trying to acquire locks
2850
- Added log messages when a job is waiting for locks
2851
- Added filtering by node tags in instance operations which admit
2852
  multiple instances (start, stop, reboot, reinstall)
2853
- Added a new tool for cluster mergers, ``cluster-merge``
2854
- Parameters from command line which are of the form ``a=b,c=d`` can now
2855
  use backslash escapes to pass in values which contain commas,
2856
  e.g. ``a=b\\c,d=e`` where the 'a' parameter would get the value
2857
  ``b,c``
2858
- For KVM, the instance name is the first parameter passed to KVM, so
2859
  that it's more visible in the process list
2860

    
2861

    
2862
Version 2.1.0
2863
-------------
2864

    
2865
*(Released Tue, 2 Mar 2010)*
2866

    
2867
Ganeti 2.1 brings many improvements with it. Major changes:
2868

    
2869
- Added infrastructure to ease automated disk repairs
2870
- Added new daemon to export configuration data in a cheaper way than
2871
  using the remote API
2872
- Instance NICs can now be routed instead of being associated with a
2873
  networking bridge
2874
- Improved job locking logic to reduce impact of jobs acquiring multiple
2875
  locks waiting for other long-running jobs
2876

    
2877
In-depth implementation details can be found in the Ganeti 2.1 design
2878
document.
2879

    
2880
Details
2881
~~~~~~~
2882

    
2883
- Added chroot hypervisor
2884
- Added more options to xen-hvm hypervisor (``kernel_path`` and
2885
  ``device_model``)
2886
- Added more options to xen-pvm hypervisor (``use_bootloader``,
2887
  ``bootloader_path`` and ``bootloader_args``)
2888
- Added the ``use_localtime`` option for the xen-hvm and kvm
2889
  hypervisors, and the default value for this has changed to false (in
2890
  2.0 xen-hvm always enabled it)
2891
- Added luxi call to submit multiple jobs in one go
2892
- Added cluster initialization option to not modify ``/etc/hosts``
2893
  file on nodes
2894
- Added network interface parameters
2895
- Added dry run mode to some LUs
2896
- Added RAPI resources:
2897

    
2898
  - ``/2/instances/[instance_name]/info``
2899
  - ``/2/instances/[instance_name]/replace-disks``
2900
  - ``/2/nodes/[node_name]/evacuate``
2901
  - ``/2/nodes/[node_name]/migrate``
2902
  - ``/2/nodes/[node_name]/role``
2903
  - ``/2/nodes/[node_name]/storage``
2904
  - ``/2/nodes/[node_name]/storage/modify``
2905
  - ``/2/nodes/[node_name]/storage/repair``
2906

    
2907
- Added OpCodes to evacuate or migrate all instances on a node
2908
- Added new command to list storage elements on nodes (``gnt-node
2909
  list-storage``) and modify them (``gnt-node modify-storage``)
2910
- Added new ssconf files with master candidate IP address
2911
  (``ssconf_master_candidates_ips``), node primary IP address
2912
  (``ssconf_node_primary_ips``) and node secondary IP address
2913
  (``ssconf_node_secondary_ips``)
2914
- Added ``ganeti-confd`` and a client library to query the Ganeti
2915
  configuration via UDP
2916
- Added ability to run hooks after cluster initialization and before
2917
  cluster destruction
2918
- Added automatic mode for disk replace (``gnt-instance replace-disks
2919
  --auto``)
2920
- Added ``gnt-instance recreate-disks`` to re-create (empty) disks
2921
  after catastrophic data-loss
2922
- Added ``gnt-node repair-storage`` command to repair damaged LVM volume
2923
  groups
2924
- Added ``gnt-instance move`` command to move instances
2925
- Added ``gnt-cluster watcher`` command to control watcher
2926
- Added ``gnt-node powercycle`` command to powercycle nodes
2927
- Added new job status field ``lock_status``
2928
- Added parseable error codes to cluster verification (``gnt-cluster
2929
  verify --error-codes``) and made output less verbose (use
2930
  ``--verbose`` to restore previous behaviour)
2931
- Added UUIDs to the main config entities (cluster, nodes, instances)
2932
- Added support for OS variants
2933
- Added support for hashed passwords in the Ganeti remote API users file
2934
  (``rapi_users``)
2935
- Added option to specify maximum timeout on instance shutdown
2936
- Added ``--no-ssh-init`` option to ``gnt-cluster init``
2937
- Added new helper script to start and stop Ganeti daemons
2938
  (``daemon-util``), with the intent to reduce the work necessary to
2939
  adjust Ganeti for non-Debian distributions and to start/stop daemons
2940
  from one place
2941
- Added more unittests
2942
- Fixed critical bug in ganeti-masterd startup
2943
- Removed the configure-time ``kvm-migration-port`` parameter, this is
2944
  now customisable at the cluster level for both the KVM and Xen
2945
  hypervisors using the new ``migration_port`` parameter
2946
- Pass ``INSTANCE_REINSTALL`` variable to OS installation script when
2947
  reinstalling an instance
2948
- Allowed ``@`` in tag names
2949
- Migrated to Sphinx (http://sphinx.pocoo.org/) for documentation
2950
- Many documentation updates
2951
- Distribute hypervisor files on ``gnt-cluster redist-conf``
2952
- ``gnt-instance reinstall`` can now reinstall multiple instances
2953
- Updated many command line parameters
2954
- Introduced new OS API version 15
2955
- No longer support a default hypervisor
2956
- Treat virtual LVs as inexistent
2957
- Improved job locking logic to reduce lock contention
2958
- Match instance and node names case insensitively
2959
- Reimplemented bash completion script to be more complete
2960
- Improved burnin
2961

    
2962

    
2963
Version 2.0.6
2964
-------------
2965

    
2966
*(Released Thu, 4 Feb 2010)*
2967

    
2968
- Fix cleaner behaviour on nodes not in a cluster (Debian bug 568105)
2969
- Fix a string formatting bug
2970
- Improve safety of the code in some error paths
2971
- Improve data validation in the master of values returned from nodes
2972

    
2973

    
2974
Version 2.0.5
2975
-------------
2976

    
2977
*(Released Thu, 17 Dec 2009)*
2978

    
2979
- Fix security issue due to missing validation of iallocator names; this
2980
  allows local and remote execution of arbitrary executables
2981
- Fix failure of gnt-node list during instance removal
2982
- Ship the RAPI documentation in the archive
2983

    
2984

    
2985
Version 2.0.4
2986
-------------
2987

    
2988
*(Released Wed, 30 Sep 2009)*
2989

    
2990
- Fixed many wrong messages
2991
- Fixed a few bugs related to the locking library
2992
- Fixed MAC checking at instance creation time
2993
- Fixed a DRBD parsing bug related to gaps in /proc/drbd
2994
- Fixed a few issues related to signal handling in both daemons and
2995
  scripts
2996
- Fixed the example startup script provided
2997
- Fixed insserv dependencies in the example startup script (patch from
2998
  Debian)
2999
- Fixed handling of drained nodes in the iallocator framework
3000
- Fixed handling of KERNEL_PATH parameter for xen-hvm (Debian bug
3001
  #528618)
3002
- Fixed error related to invalid job IDs in job polling
3003
- Fixed job/opcode persistence on unclean master shutdown
3004
- Fixed handling of partial job processing after unclean master
3005
  shutdown
3006
- Fixed error reporting from LUs, previously all errors were converted
3007
  into execution errors
3008
- Fixed error reporting from burnin
3009
- Decreased significantly the memory usage of the job queue
3010
- Optimised slightly multi-job submission
3011
- Optimised slightly opcode loading
3012
- Backported the multi-job submit framework from the development
3013
  branch; multi-instance start and stop should be faster
3014
- Added script to clean archived jobs after 21 days; this will reduce
3015
  the size of the queue directory
3016
- Added some extra checks in disk size tracking
3017
- Added an example ethers hook script
3018
- Added a cluster parameter that prevents Ganeti from modifying of
3019
  /etc/hosts
3020
- Added more node information to RAPI responses
3021
- Added a ``gnt-job watch`` command that allows following the ouput of a
3022
  job
3023
- Added a bind-address option to ganeti-rapi
3024
- Added more checks to the configuration verify
3025
- Enhanced the burnin script such that some operations can be retried
3026
  automatically
3027
- Converted instance reinstall to multi-instance model
3028

    
3029

    
3030
Version 2.0.3
3031
-------------
3032

    
3033
*(Released Fri, 7 Aug 2009)*
3034

    
3035
- Added ``--ignore-size`` to the ``gnt-instance activate-disks`` command
3036
  to allow using the pre-2.0.2 behaviour in activation, if any existing
3037
  instances have mismatched disk sizes in the configuration
3038
- Added ``gnt-cluster repair-disk-sizes`` command to check and update
3039
  any configuration mismatches for disk sizes
3040
- Added ``gnt-master cluste-failover --no-voting`` to allow master
3041
  failover to work on two-node clusters
3042
- Fixed the ``--net`` option of ``gnt-backup import``, which was
3043
  unusable
3044
- Fixed detection of OS script errors in ``gnt-backup export``
3045
- Fixed exit code of ``gnt-backup export``
3046

    
3047

    
3048
Version 2.0.2
3049
-------------
3050

    
3051
*(Released Fri, 17 Jul 2009)*
3052

    
3053
- Added experimental support for stripped logical volumes; this should
3054
  enhance performance but comes with a higher complexity in the block
3055
  device handling; stripping is only enabled when passing
3056
  ``--with-lvm-stripecount=N`` to ``configure``, but codepaths are
3057
  affected even in the non-stripped mode
3058
- Improved resiliency against transient failures at the end of DRBD
3059
  resyncs, and in general of DRBD resync checks
3060
- Fixed a couple of issues with exports and snapshot errors
3061
- Fixed a couple of issues in instance listing
3062
- Added display of the disk size in ``gnt-instance info``
3063
- Fixed checking for valid OSes in instance creation
3064
- Fixed handling of the "vcpus" parameter in instance listing and in
3065
  general of invalid parameters
3066
- Fixed http server library, and thus RAPI, to handle invalid
3067
  username/password combinations correctly; this means that now they
3068
  report unauthorized for queries too, not only for modifications,
3069
  allowing earlier detect of configuration problems
3070
- Added a new "role" node list field, equivalent to the master/master
3071
  candidate/drained/offline flags combinations
3072
- Fixed cluster modify and changes of candidate pool size
3073
- Fixed cluster verify error messages for wrong files on regular nodes
3074
- Fixed a couple of issues with node demotion from master candidate role
3075
- Fixed node readd issues
3076
- Added non-interactive mode for ``ganeti-masterd --no-voting`` startup
3077
- Added a new ``--no-voting`` option for masterfailover to fix failover
3078
  on two-nodes clusters when the former master node is unreachable
3079
- Added instance reinstall over RAPI
3080

    
3081

    
3082
Version 2.0.1
3083
-------------
3084

    
3085
*(Released Tue, 16 Jun 2009)*
3086

    
3087
- added ``-H``/``-B`` startup parameters to ``gnt-instance``, which will
3088
  allow re-adding the start in single-user option (regression from 1.2)
3089
- the watcher writes the instance status to a file, to allow monitoring
3090
  to report the instance status (from the master) based on cached
3091
  results of the watcher's queries; while this can get stale if the
3092
  watcher is being locked due to other work on the cluster, this is
3093
  still an improvement
3094
- the watcher now also restarts the node daemon and the rapi daemon if
3095
  they died
3096
- fixed the watcher to handle full and drained queue cases
3097
- hooks export more instance data in the environment, which helps if
3098
  hook scripts need to take action based on the instance's properties
3099
  (no longer need to query back into ganeti)
3100
- instance failovers when the instance is stopped do not check for free
3101
  RAM, so that failing over a stopped instance is possible in low memory
3102
  situations
3103
- rapi uses queries for tags instead of jobs (for less job traffic), and
3104
  for cluster tags it won't talk to masterd at all but read them from
3105
  ssconf
3106
- a couple of error handling fixes in RAPI
3107
- drbd handling: improved the error handling of inconsistent disks after
3108
  resync to reduce the frequency of "there are some degraded disks for
3109
  this instance" messages
3110
- fixed a bug in live migration when DRBD doesn't want to reconnect (the
3111
  error handling path called a wrong function name)
3112

    
3113

    
3114
Version 2.0.0
3115
-------------
3116

    
3117
*(Released Wed, 27 May 2009)*
3118

    
3119
- no changes from rc5
3120

    
3121

    
3122
Version 2.0 rc5
3123
---------------
3124

    
3125
*(Released Wed, 20 May 2009)*
3126

    
3127
- fix a couple of bugs (validation, argument checks)
3128
- fix ``gnt-cluster getmaster`` on non-master nodes (regression)
3129
- some small improvements to RAPI and IAllocator
3130
- make watcher automatically start the master daemon if down
3131

    
3132

    
3133
Version 2.0 rc4
3134
---------------
3135

    
3136
*(Released Mon, 27 Apr 2009)*
3137

    
3138
- change the OS list to not require locks; this helps with big clusters
3139
- fix ``gnt-cluster verify`` and ``gnt-cluster verify-disks`` when the
3140
  volume group is broken
3141
- ``gnt-instance info``, without any arguments, doesn't run for all
3142
  instances anymore; either pass ``--all`` or pass the desired
3143
  instances; this helps against mistakes on big clusters where listing
3144
  the information for all instances takes a long time
3145
- miscellaneous doc and man pages fixes
3146

    
3147

    
3148
Version 2.0 rc3
3149
---------------
3150

    
3151
*(Released Wed, 8 Apr 2009)*
3152

    
3153
- Change the internal locking model of some ``gnt-node`` commands, in
3154
  order to reduce contention (and blocking of master daemon) when
3155
  batching many creation/reinstall jobs
3156
- Fixes to Xen soft reboot
3157
- No longer build documentation at build time, instead distribute it in
3158
  the archive, in order to reduce the need for the whole docbook/rst
3159
  toolchains
3160

    
3161

    
3162
Version 2.0 rc2
3163
---------------
3164

    
3165
*(Released Fri, 27 Mar 2009)*
3166

    
3167
- Now the cfgupgrade scripts works and can upgrade 1.2.7 clusters to 2.0
3168
- Fix watcher startup sequence, improves the behaviour of busy clusters
3169
- Some other fixes in ``gnt-cluster verify``, ``gnt-instance
3170
  replace-disks``, ``gnt-instance add``, ``gnt-cluster queue``, KVM VNC
3171
  bind address and other places
3172
- Some documentation fixes and updates
3173

    
3174

    
3175
Version 2.0 rc1
3176
---------------
3177

    
3178
*(Released Mon, 2 Mar 2009)*
3179

    
3180
- More documentation updates, now all docs should be more-or-less
3181
  up-to-date
3182
- A couple of small fixes (mixed hypervisor clusters, offline nodes,
3183
  etc.)
3184
- Added a customizable HV_KERNEL_ARGS hypervisor parameter (for Xen PVM
3185
  and KVM)
3186
- Fix an issue related to $libdir/run/ganeti and cluster creation
3187

    
3188

    
3189
Version 2.0 beta2
3190
-----------------
3191

    
3192
*(Released Thu, 19 Feb 2009)*
3193

    
3194
- Xen PVM and KVM have switched the default value for the instance root
3195
  disk to the first partition on the first drive, instead of the whole
3196
  drive; this means that the OS installation scripts must be changed
3197
  accordingly
3198
- Man pages have been updated
3199
- RAPI has been switched by default to HTTPS, and the exported functions
3200
  should all work correctly
3201
- RAPI v1 has been removed
3202
- Many improvements to the KVM hypervisor
3203
- Block device errors are now better reported
3204
- Many other bugfixes and small improvements
3205

    
3206

    
3207
Version 2.0 beta1
3208
-----------------
3209

    
3210
*(Released Mon, 26 Jan 2009)*
3211

    
3212
- Version 2 is a general rewrite of the code and therefore the
3213
  differences are too many to list, see the design document for 2.0 in
3214
  the ``doc/`` subdirectory for more details
3215
- In this beta version there is not yet a migration path from 1.2 (there
3216
  will be one in the final 2.0 release)
3217
- A few significant changes are:
3218

    
3219
  - all commands are executed by a daemon (``ganeti-masterd``) and the
3220
    various ``gnt-*`` commands are just front-ends to it
3221
  - all the commands are entered into, and executed from a job queue,
3222
    see the ``gnt-job(8)`` manpage
3223
  - the RAPI daemon supports read-write operations, secured by basic
3224
    HTTP authentication on top of HTTPS
3225
  - DRBD version 0.7 support has been removed, DRBD 8 is the only
3226
    supported version (when migrating from Ganeti 1.2 to 2.0, you need
3227
    to migrate to DRBD 8 first while still running Ganeti 1.2)
3228
  - DRBD devices are using statically allocated minor numbers, which
3229
    will be assigned to existing instances during the migration process
3230
  - there is support for both Xen PVM and Xen HVM instances running on
3231
    the same cluster
3232
  - KVM virtualization is supported too
3233
  - file-based storage has been implemented, which means that it is
3234
    possible to run the cluster without LVM and DRBD storage, for
3235
    example using a shared filesystem exported from shared storage (and
3236
    still have live migration)
3237

    
3238

    
3239
Version 1.2.7
3240
-------------
3241

    
3242
*(Released Tue, 13 Jan 2009)*
3243

    
3244
- Change the default reboot type in ``gnt-instance reboot`` to "hard"
3245
- Reuse the old instance mac address by default on instance import, if
3246
  the instance name is the same.
3247
- Handle situations in which the node info rpc returns incomplete
3248
  results (issue 46)
3249
- Add checks for tcp/udp ports collisions in ``gnt-cluster verify``
3250
- Improved version of batcher:
3251

    
3252
  - state file support
3253
  - instance mac address support
3254
  - support for HVM clusters/instances
3255

    
3256
- Add an option to show the number of cpu sockets and nodes in
3257
  ``gnt-node list``
3258
- Support OSes that handle more than one version of the OS api (but do
3259
  not change the current API in any other way)
3260
- Fix ``gnt-node migrate``
3261
- ``gnt-debug`` man page
3262
- Fixes various more typos and small issues
3263
- Increase disk resync maximum speed to 60MB/s (from 30MB/s)
3264

    
3265

    
3266
Version 1.2.6
3267
-------------
3268

    
3269
*(Released Wed, 24 Sep 2008)*
3270

    
3271
- new ``--hvm-nic-type`` and ``--hvm-disk-type`` flags to control the
3272
  type of disk exported to fully virtualized instances.
3273
- provide access to the serial console of HVM instances
3274
- instance auto_balance flag, set by default. If turned off it will
3275
  avoid warnings on cluster verify if there is not enough memory to fail
3276
  over an instance. in the future it will prevent automatically failing
3277
  it over when we will support that.
3278
- batcher tool for instance creation, see ``tools/README.batcher``
3279
- ``gnt-instance reinstall --select-os`` to interactively select a new
3280
  operating system when reinstalling an instance.
3281
- when changing the memory amount on instance modify a check has been
3282
  added that the instance will be able to start. also warnings are
3283
  emitted if the instance will not be able to fail over, if auto_balance
3284
  is true.
3285
- documentation fixes
3286
- sync fields between ``gnt-instance list/modify/add/import``
3287
- fix a race condition in drbd when the sync speed was set after giving
3288
  the device a remote peer.
3289

    
3290

    
3291
Version 1.2.5
3292
-------------
3293

    
3294
*(Released Tue, 22 Jul 2008)*
3295

    
3296
- note: the allowed size and number of tags per object were reduced
3297
- fix a bug in ``gnt-cluster verify`` with inconsistent volume groups
3298
- fixed twisted 8.x compatibility
3299
- fixed ``gnt-instance replace-disks`` with iallocator
3300
- add TCP keepalives on twisted connections to detect restarted nodes
3301
- disk increase support, see ``gnt-instance grow-disk``
3302
- implement bulk node/instance query for RAPI
3303
- add tags in node/instance listing (optional)
3304
- experimental migration (and live migration) support, read the man page
3305
  for ``gnt-instance migrate``
3306
- the ``ganeti-watcher`` logs are now timestamped, and the watcher also
3307
  has some small improvements in handling its state file
3308

    
3309

    
3310
Version 1.2.4
3311
-------------
3312

    
3313
*(Released Fri, 13 Jun 2008)*
3314

    
3315
- Experimental readonly, REST-based remote API implementation;
3316
  automatically started on master node, TCP port 5080, if enabled by
3317
  ``--enable-rapi`` parameter to configure script.
3318
- Instance allocator support. Add and import instance accept a
3319
  ``--iallocator`` parameter, and call that instance allocator to decide
3320
  which node to use for the instance. The iallocator document describes
3321
  what's expected from an allocator script.
3322
- ``gnt-cluster verify`` N+1 memory redundancy checks: Unless passed the
3323
  ``--no-nplus1-mem`` option ``gnt-cluster verify`` now checks that if a
3324
  node is lost there is still enough memory to fail over the instances
3325
  that reside on it.
3326
- ``gnt-cluster verify`` hooks: it is now possible to add post-hooks to
3327
  ``gnt-cluster verify``, to check for site-specific compliance. All the
3328
  hooks will run, and their output, if any, will be displayed. Any
3329
  failing hook will make the verification return an error value.
3330
- ``gnt-cluster verify`` now checks that its peers are reachable on the
3331
  primary and secondary interfaces
3332
- ``gnt-node add`` now supports the ``--readd`` option, to readd a node
3333
  that is still declared as part of the cluster and has failed.
3334
- ``gnt-* list`` commands now accept a new ``-o +field`` way of
3335
  specifying output fields, that just adds the chosen fields to the
3336
  default ones.
3337
- ``gnt-backup`` now has a new ``remove`` command to delete an existing
3338
  export from the filesystem.
3339
- New per-instance parameters hvm_acpi, hvm_pae and hvm_cdrom_image_path
3340
  have been added. Using them you can enable/disable acpi and pae
3341
  support, and specify a path for a cd image to be exported to the
3342
  instance. These parameters as the name suggest only work on HVM
3343
  clusters.
3344
- When upgrading an HVM cluster to Ganeti 1.2.4, the values for ACPI and
3345
  PAE support will be set to the previously hardcoded values, but the
3346
  (previously hardcoded) path to the CDROM ISO image will be unset and
3347
  if required, needs to be set manually with ``gnt-instance modify``
3348
  after the upgrade.
3349
- The address to which an instance's VNC console is bound is now
3350
  selectable per-instance, rather than being cluster wide. Of course
3351
  this only applies to instances controlled via VNC, so currently just
3352
  applies to HVM clusters.
3353

    
3354

    
3355
Version 1.2.3
3356
-------------
3357

    
3358
*(Released Mon, 18 Feb 2008)*
3359

    
3360
- more tweaks to the disk activation code (especially helpful for DRBD)
3361
- change the default ``gnt-instance list`` output format, now there is
3362
  one combined status field (see the manpage for the exact values this
3363
  field will have)
3364
- some more fixes for the mac export to hooks change
3365
- make Ganeti not break with DRBD 8.2.x (which changed the version
3366
  format in ``/proc/drbd``) (issue 24)
3367
- add an upgrade tool from "remote_raid1" disk template to "drbd" disk
3368
  template, allowing migration from DRBD0.7+MD to DRBD8
3369

    
3370

    
3371
Version 1.2.2
3372
-------------
3373

    
3374
*(Released Wed, 30 Jan 2008)*
3375

    
3376
- fix ``gnt-instance modify`` breakage introduced in 1.2.1 with the HVM
3377
  support (issue 23)
3378
- add command aliases infrastructure and a few aliases
3379
- allow listing of VCPUs in the ``gnt-instance list`` and improve the
3380
  man pages and the ``--help`` option of ``gnt-node
3381
  list``/``gnt-instance list``
3382
- fix ``gnt-backup list`` with down nodes (issue 21)
3383
- change the tools location (move from $pkgdatadir to $pkglibdir/tools)
3384
- fix the dist archive and add a check for including svn/git files in
3385
  the future
3386
- some developer-related changes: improve the burnin and the QA suite,
3387
  add an upload script for testing during development
3388

    
3389

    
3390
Version 1.2.1
3391
-------------
3392

    
3393
*(Released Wed, 16 Jan 2008)*
3394

    
3395
- experimental HVM support, read the install document, section
3396
  "Initializing the cluster"
3397
- allow for the PVM hypervisor per-instance kernel and initrd paths
3398
- add a new command ``gnt-cluster verify-disks`` which uses a new
3399
  algorithm to improve the reconnection of the DRBD pairs if the device
3400
  on the secondary node has gone away
3401
- make logical volume code auto-activate LVs at disk activation time
3402
- slightly improve the speed of activating disks
3403
- allow specification of the MAC address at instance creation time, and
3404
  changing it later via ``gnt-instance modify``
3405
- fix handling of external commands that generate lots of output on
3406
  stderr
3407
- update documentation with regard to minimum version of DRBD8 supported
3408

    
3409

    
3410
Version 1.2.0
3411
-------------
3412

    
3413
*(Released Tue, 4 Dec 2007)*
3414

    
3415
- Log the ``xm create`` output to the node daemon log on failure (to
3416
  help diagnosing the error)
3417
- In debug mode, log all external commands output if failed to the logs
3418
- Change parsing of lvm commands to ignore stderr
3419

    
3420

    
3421
Version 1.2 beta3
3422
-----------------
3423

    
3424
*(Released Wed, 28 Nov 2007)*
3425

    
3426
- Another round of updates to the DRBD 8 code to deal with more failures
3427
  in the replace secondary node operation
3428
- Some more logging of failures in disk operations (lvm, drbd)
3429
- A few documentation updates
3430
- QA updates
3431

    
3432

    
3433
Version 1.2 beta2
3434
-----------------
3435

    
3436
*(Released Tue, 13 Nov 2007)*
3437

    
3438
- Change configuration file format from Python's Pickle to JSON.
3439
  Upgrading is possible using the cfgupgrade utility.
3440
- Add support for DRBD 8.0 (new disk template ``drbd``) which allows for
3441
  faster replace disks and is more stable (DRBD 8 has many improvements
3442
  compared to DRBD 0.7)
3443
- Added command line tags support (see man pages for ``gnt-instance``,
3444
  ``gnt-node``, ``gnt-cluster``)
3445
- Added instance rename support
3446
- Added multi-instance startup/shutdown
3447
- Added cluster rename support
3448
- Added ``gnt-node evacuate`` to simplify some node operations
3449
- Added instance reboot operation that can speedup reboot as compared to
3450
  stop and start
3451
- Soften the requirement that hostnames are in FQDN format
3452
- The ``ganeti-watcher`` now activates drbd pairs after secondary node
3453
  reboots
3454
- Removed dependency on debian's patched fping that uses the
3455
  non-standard ``-S`` option
3456
- Now the OS definitions are searched for in multiple, configurable
3457
  paths (easier for distros to package)
3458
- Some changes to the hooks infrastructure (especially the new
3459
  post-configuration update hook)
3460
- Other small bugfixes
3461

    
3462
.. vim: set textwidth=72 syntax=rst :
3463
.. Local Variables:
3464
.. mode: rst
3465
.. fill-column: 72
3466
.. End: