Statistics
| Branch: | Tag: | Revision:

root / NEWS @ 84a12e40

History | View | Annotate | Download (38.7 kB)

1
News
2
====
3

    
4
Version 2.2.0 beta 0
5
--------------------
6

    
7
*(Released Thu, 17 Jun 2010)*
8

    
9
- Added tool (``move-instance``) and infrastructure to move instances
10
  between separate clusters (see :doc:`separate documentation
11
  <move-instance>` and :doc:`design document <design-2.2>`)
12
- Added per-request RPC timeout
13
- RAPI now requires a Content-Type header for requests with a body (e.g.
14
  ``PUT`` or ``POST``) which must be set to ``application/json`` (see
15
  RFC2616 (HTTP/1.1), section 7.2.1)
16
- ``ganeti-watcher`` attempts to restart ``ganeti-rapi`` if RAPI is not
17
  reachable
18
- Implemented initial support for running Ganeti daemons as separate
19
  users, see configure-time flags ``--with-user-prefix`` and
20
  ``--with-group-prefix`` (only ``ganeti-rapi`` is supported at this
21
  time)
22
- Instances can be removed after export (``gnt-backup export
23
  --remove-instance``)
24
- Self-signed certificates generated by Ganeti now use a 2048 bit RSA
25
  key (instead of 1024 bit)
26
- Added new cluster configuration file for cluster domain secret
27
- Import/export now use SSL instead of SSH
28
- Added support for showing estimated time when exporting an instance,
29
  see the ``ganeti-os-interface(7)`` manpage and look for
30
  ``EXP_SIZE_FD``
31

    
32

    
33
Version 2.1.6
34
-------------
35

    
36
*(Released Fri, 16 Jul 2010)*
37

    
38
Bugfixes only:
39
  - Add an option to only select some reboot types during qa/burnin.
40
    (on some hypervisors consequent reboots are not supported)
41
  - Fix infrequent race condition in master failover. Sometimes the old
42
    master ip address would be still detected as up for a short time
43
    after it was removed, causing failover to fail.
44
  - Decrease mlockall warnings when the ctypes module is missing. On
45
    Python 2.4 we support running even if no ctypes module is installed,
46
    but we were too verbose about this issue.
47
  - Fix building on old distributions, on which man doesn't have a
48
    --warnings option.
49
  - Fix RAPI not to ignore the MAC address on instance creation
50
  - Implement the old instance creation format in the RAPI client.
51

    
52

    
53
Version 2.1.5
54
-------------
55

    
56
*(Released Thu, 01 Jul 2010)*
57

    
58
A small bugfix release:
59
  - Fix disk adoption: broken by strict --disk option checking in 2.1.4
60
  - Fix batch-create: broken in the whole 2.1 series due to a lookup on
61
    a non-existing option
62
  - Fix instance create: the --force-variant option was ignored
63
  - Improve pylint 0.21 compatibility and warnings with Python 2.6
64
  - Fix modify node storage with non-FQDN arguments
65
  - Fix RAPI client to authenticate under Python 2.6 when used
66
    for more than 5 requests needing authentication
67
  - Fix gnt-instance modify -t (storage) giving a wrong error message
68
    when converting a non-shutdown drbd instance to plain
69

    
70

    
71
Version 2.1.4
72
-------------
73

    
74
*(Released Fri, 18 Jun 2010)*
75

    
76
A small bugfix release:
77

    
78
  - Fix live migration of KVM instances started with older Ganeti
79
    versions which had fewer hypervisor parameters
80
  - Fix gnt-instance grow-disk on down instances
81
  - Fix an error-reporting bug during instance migration
82
  - Better checking of the ``--net`` and ``--disk`` values, to avoid
83
    silently ignoring broken ones
84
  - Fix an RPC error reporting bug affecting, for example, RAPI client
85
    users
86
  - Fix bug triggered by different API version os-es on different nodes
87
  - Fix a bug in instance startup with custom hvparams: OS level
88
    parameters would fail to be applied.
89
  - Fix the RAPI client under Python 2.6 (but more work is needed to
90
    make it work completely well with OpenSSL)
91
  - Fix handling of errors when resolving names from DNS
92

    
93

    
94
Version 2.1.3
95
-------------
96

    
97
*(Released Thu, 3 Jun 2010)*
98

    
99
A medium sized development cycle. Some new features, and some
100
fixes/small improvements/cleanups.
101

    
102
Significant features
103
~~~~~~~~~~~~~~~~~~~~
104

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

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

    
115
KVM: Add instance chrooting feature. If you use privilege dropping for
116
your VMs you can also now force them to chroot to an empty directory,
117
before starting the emulated guest.
118

    
119
KVM: Add maximum migration bandwith and maximum downtime tweaking
120
support (requires a new-enough version of qemu-kvm).
121

    
122
Cluster verify will now warn if the master node doesn't have the master
123
ip configured on it.
124

    
125
Add a new (incompatible) instance creation request format to RAPI which
126
supports all parameters (previously only a subset was supported, and it
127
wasn't possible to extend the old format to accomodate all the new
128
features. The old format is still supported, and a client can check for
129
this feature, before using it, by checking for its presence in the
130
``features`` RAPI resource.
131

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

    
136
Other changes
137
~~~~~~~~~~~~~
138

    
139
As usual many internal code refactorings, documentation updates, and
140
such. Among others:
141

    
142
  - Lots of improvements and cleanups to the experimental Remote API
143
    (RAPI) client library.
144
  - A new unit test suite for the core daemon libraries.
145
  - A fix to creating missing directories makes sure the umask is not
146
    applied anymore. This enforces the same directory permissions
147
    everywhere.
148
  - Better handling terminating daemons with ctrl+c (used when running
149
    them in debugging mode).
150
  - Fix a race condition in live migrating a KVM instance, when stat()
151
    on the old proc status file returned EINVAL, which is an unexpected
152
    value.
153
  - Fixed manpage checking with newer man and utf-8 charachters. But now
154
    you need the en_US.UTF-8 locale enabled to build Ganeti from git.
155

    
156

    
157
Version 2.1.2.1
158
---------------
159

    
160
*(Released Fri, 7 May 2010)*
161

    
162
Fix a bug which prevented untagged KVM instances from starting.
163

    
164

    
165
Version 2.1.2
166
-------------
167

    
168
*(Released Fri, 7 May 2010)*
169

    
170
Another release with a long development cycle, during which many
171
different features were added.
172

    
173
Significant features
174
~~~~~~~~~~~~~~~~~~~~
175

    
176
The KVM hypervisor now can run the individual instances as non-root, to
177
reduce the impact of a VM being hijacked due to bugs in the
178
hypervisor. It is possible to run all instances as a single (non-root)
179
user, to manually specify a user for each instance, or to dynamically
180
allocate a user out of a cluster-wide pool to each instance, with the
181
guarantee that no two instances will run under the same user ID on any
182
given node.
183

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

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

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

    
198
Another disk improvement is the possibility to convert between redundant
199
(DRBD) and plain (LVM) disk configuration for an instance. This should
200
allow better scalability (starting with one node and growing the
201
cluster, or shrinking a two-node cluster to one node).
202

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

    
212
Instance export/import now will reuse the original instance
213
specifications for all parameters; that means exporting an instance,
214
deleting it and the importing it back should give an almost identical
215
instance. Note that the default import behaviour has changed from
216
before, where it created only one NIC; now it recreates the original
217
number of NICs.
218

    
219
Cluster verify has added a few new checks: SSL certificates validity,
220
/etc/hosts consistency across the cluster, etc.
221

    
222
Other changes
223
~~~~~~~~~~~~~
224

    
225
As usual, many internal changes were done, documentation fixes,
226
etc. Among others:
227

    
228
- Fixed cluster initialization with disabled cluster storage (regression
229
  introduced in 2.1.1)
230
- File-based storage supports growing the disks
231
- Fixed behaviour of node role changes
232
- Fixed cluster verify for some corner cases, plus a general rewrite of
233
  cluster verify to allow future extension with more checks
234
- Fixed log spamming by watcher and node daemon (regression introduced
235
  in 2.1.1)
236
- Fixed possible validation issues when changing the list of enabled
237
  hypervisors
238
- Fixed cleanup of /etc/hosts during node removal
239
- Fixed RAPI response for invalid methods
240
- Fixed bug with hashed passwords in ``ganeti-rapi`` daemon
241
- Multiple small improvements to the KVM hypervisor (VNC usage, booting
242
  from ide disks, etc.)
243
- Allow OS changes without re-installation (to record a changed OS
244
  outside of Ganeti, or to allow OS renames)
245
- Allow instance creation without OS installation (useful for example if
246
  the OS will be installed manually, or restored from a backup not in
247
  Ganeti format)
248
- Implemented option to make cluster ``copyfile`` use the replication
249
  network
250
- Added list of enabled hypervisors to ssconf (possibly useful for
251
  external scripts)
252
- Added a new tool (``tools/cfgupgrade12``) that allows upgrading from
253
  1.2 clusters
254
- A partial form of node re-IP is possible via node readd, which now
255
  allows changed node primary IP
256
- Command line utilities now show an informational message if the job is
257
  waiting for a lock
258
- The logs of the master daemon now show the PID/UID/GID of the
259
  connected client
260

    
261

    
262
Version 2.1.1
263
-------------
264

    
265
*(Released Fri, 12 Mar 2010)*
266

    
267
During the 2.1.0 long release candidate cycle, a lot of improvements and
268
changes have accumulated with were released later as 2.1.1.
269

    
270
Major changes
271
~~~~~~~~~~~~~
272

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

    
284
Another important change is increased validation of node and instance
285
names. This might create problems in special cases, if invalid host
286
names are being used.
287

    
288
Also, a new layer of hypervisor parameters has been added, that sits at
289
OS level between the cluster defaults and the instance ones. This allows
290
customisation of virtualization parameters depending on the installed
291
OS. For example instances with OS 'X' may have a different KVM kernel
292
(or any other parameter) than the cluster defaults. This is intended to
293
help managing a multiple OSes on the same cluster, without manual
294
modification of each instance's parameters.
295

    
296
A tool for merging clusters, ``cluster-merge``, has been added in the
297
tools sub-directory.
298

    
299
Bug fixes
300
~~~~~~~~~
301

    
302
- Improved the int/float conversions that should make the code more
303
  robust in face of errors from the node daemons
304
- Fixed the remove node code in case of internal configuration errors
305
- Fixed the node daemon behaviour in face of inconsistent queue
306
  directory (e.g. read-only file-system where we can't open the files
307
  read-write, etc.)
308
- Fixed the behaviour of gnt-node modify for master candidate demotion;
309
  now it either aborts cleanly or, if given the new โ€œauto_promoteโ€
310
  parameter, will automatically promote other nodes as needed
311
- Fixed compatibility with (unreleased yet) Python 2.6.5 that would
312
  completely prevent Ganeti from working
313
- Fixed bug for instance export when not all disks were successfully
314
  exported
315
- Fixed behaviour of node add when the new node is slow in starting up
316
  the node daemon
317
- Fixed handling of signals in the LUXI client, which should improve
318
  behaviour of command-line scripts
319
- Added checks for invalid node/instance names in the configuration (now
320
  flagged during cluster verify)
321
- Fixed watcher behaviour for disk activation errors
322
- Fixed two potentially endless loops in http library, which led to the
323
  RAPI daemon hanging and consuming 100% CPU in some cases
324
- Fixed bug in RAPI daemon related to hashed passwords
325
- Fixed bug for unintended qemu-level bridging of multi-NIC KVM
326
  instances
327
- Enhanced compatibility with non-Debian OSes, but not using absolute
328
  path in some commands and allowing customisation of the ssh
329
  configuration directory
330
- Fixed possible future issue with new Python versions by abiding to the
331
  proper use of ``__slots__`` attribute on classes
332
- Added checks that should prevent directory traversal attacks
333
- Many documentation fixes based on feedback from users
334

    
335
New features
336
~~~~~~~~~~~~
337

    
338
- Added an โ€œearly_releaseโ€ more for instance replace disks and node
339
  evacuate, where we release locks earlier and thus allow higher
340
  parallelism within the cluster
341
- Added watcher hooks, intended to allow the watcher to restart other
342
  daemons (e.g. from the ganeti-nbma project), but they can be used of
343
  course for any other purpose
344
- Added a compile-time disable for DRBD barriers, to increase
345
  performance if the administrator trusts the power supply or the
346
  storage system to not lose writes
347
- Added the option of using syslog for logging instead of, or in
348
  addition to, Ganeti's own log files
349
- Removed boot restriction for paravirtual NICs for KVM, recent versions
350
  can indeed boot from a paravirtual NIC
351
- Added a generic debug level for many operations; while this is not
352
  used widely yet, it allows one to pass the debug value all the way to
353
  the OS scripts
354
- Enhanced the hooks environment for instance moves (failovers,
355
  migrations) where the primary/secondary nodes changed during the
356
  operation, by adding {NEW,OLD}_{PRIMARY,SECONDARY} vars
357
- Enhanced data validations for many user-supplied values; one important
358
  item is the restrictions imposed on instance and node names, which
359
  might reject some (invalid) host names
360
- Add a configure-time option to disable file-based storage, if it's not
361
  needed; this allows greater security separation between the master
362
  node and the other nodes from the point of view of the inter-node RPC
363
  protocol
364
- Added user notification in interactive tools if job is waiting in the
365
  job queue or trying to acquire locks
366
- Added log messages when a job is waiting for locks
367
- Added filtering by node tags in instance operations which admit
368
  multiple instances (start, stop, reboot, reinstall)
369
- Added a new tool for cluster mergers, ``cluster-merge``
370
- Parameters from command line which are of the form ``a=b,c=d`` can now
371
  use backslash escapes to pass in values which contain commas,
372
  e.g. ``a=b\\c,d=e`` where the 'a' parameter would get the value
373
  ``b,c``
374
- For KVM, the instance name is the first parameter passed to KVM, so
375
  that it's more visible in the process list
376

    
377

    
378
Version 2.1.0
379
-------------
380

    
381
*(Released Tue, 2 Mar 2010)*
382

    
383
Ganeti 2.1 brings many improvements with it. Major changes:
384

    
385
- Added infrastructure to ease automated disk repairs
386
- Added new daemon to export configuration data in a cheaper way than
387
  using the remote API
388
- Instance NICs can now be routed instead of being associated with a
389
  networking bridge
390
- Improved job locking logic to reduce impact of jobs acquiring multiple
391
  locks waiting for other long-running jobs
392

    
393
In-depth implementation details can be found in the Ganeti 2.1 design
394
document.
395

    
396
Details
397
~~~~~~~
398

    
399
- Added chroot hypervisor
400
- Added more options to xen-hvm hypervisor (``kernel_path`` and
401
  ``device_model``)
402
- Added more options to xen-pvm hypervisor (``use_bootloader``,
403
  ``bootloader_path`` and ``bootloader_args``)
404
- Added the ``use_localtime`` option for the xen-hvm and kvm
405
  hypervisors, and the default value for this has changed to false (in
406
  2.0 xen-hvm always enabled it)
407
- Added luxi call to submit multiple jobs in one go
408
- Added cluster initialization option to not modify ``/etc/hosts``
409
  file on nodes
410
- Added network interface parameters
411
- Added dry run mode to some LUs
412
- Added RAPI resources:
413

    
414
  - ``/2/instances/[instance_name]/info``
415
  - ``/2/instances/[instance_name]/replace-disks``
416
  - ``/2/nodes/[node_name]/evacuate``
417
  - ``/2/nodes/[node_name]/migrate``
418
  - ``/2/nodes/[node_name]/role``
419
  - ``/2/nodes/[node_name]/storage``
420
  - ``/2/nodes/[node_name]/storage/modify``
421
  - ``/2/nodes/[node_name]/storage/repair``
422

    
423
- Added OpCodes to evacuate or migrate all instances on a node
424
- Added new command to list storage elements on nodes (``gnt-node
425
  list-storage``) and modify them (``gnt-node modify-storage``)
426
- Added new ssconf files with master candidate IP address
427
  (``ssconf_master_candidates_ips``), node primary IP address
428
  (``ssconf_node_primary_ips``) and node secondary IP address
429
  (``ssconf_node_secondary_ips``)
430
- Added ``ganeti-confd`` and a client library to query the Ganeti
431
  configuration via UDP
432
- Added ability to run hooks after cluster initialization and before
433
  cluster destruction
434
- Added automatic mode for disk replace (``gnt-instance replace-disks
435
  --auto``)
436
- Added ``gnt-instance recreate-disks`` to re-create (empty) disks
437
  after catastrophic data-loss
438
- Added ``gnt-node repair-storage`` command to repair damaged LVM volume
439
  groups
440
- Added ``gnt-instance move`` command to move instances
441
- Added ``gnt-cluster watcher`` command to control watcher
442
- Added ``gnt-node powercycle`` command to powercycle nodes
443
- Added new job status field ``lock_status``
444
- Added parseable error codes to cluster verification (``gnt-cluster
445
  verify --error-codes``) and made output less verbose (use
446
  ``--verbose`` to restore previous behaviour)
447
- Added UUIDs to the main config entities (cluster, nodes, instances)
448
- Added support for OS variants
449
- Added support for hashed passwords in the Ganeti remote API users file
450
  (``rapi_users``)
451
- Added option to specify maximum timeout on instance shutdown
452
- Added ``--no-ssh-init`` option to ``gnt-cluster init``
453
- Added new helper script to start and stop Ganeti daemons
454
  (``daemon-util``), with the intent to reduce the work necessary to
455
  adjust Ganeti for non-Debian distributions and to start/stop daemons
456
  from one place
457
- Added more unittests
458
- Fixed critical bug in ganeti-masterd startup
459
- Removed the configure-time ``kvm-migration-port`` parameter, this is
460
  now customisable at the cluster level for both the KVM and Xen
461
  hypervisors using the new ``migration_port`` parameter
462
- Pass ``INSTANCE_REINSTALL`` variable to OS installation script when
463
  reinstalling an instance
464
- Allowed ``@`` in tag names
465
- Migrated to Sphinx (http://sphinx.pocoo.org/) for documentation
466
- Many documentation updates
467
- Distribute hypervisor files on ``gnt-cluster redist-conf``
468
- ``gnt-instance reinstall`` can now reinstall multiple instances
469
- Updated many command line parameters
470
- Introduced new OS API version 15
471
- No longer support a default hypervisor
472
- Treat virtual LVs as inexistent
473
- Improved job locking logic to reduce lock contention
474
- Match instance and node names case insensitively
475
- Reimplemented bash completion script to be more complete
476
- Improved burnin
477

    
478

    
479
Version 2.0.6
480
-------------
481

    
482
*(Released Thu, 4 Feb 2010)*
483

    
484
- Fix cleaner behaviour on nodes not in a cluster (Debian bug 568105)
485
- Fix a string formatting bug
486
- Improve safety of the code in some error paths
487
- Improve data validation in the master of values returned from nodes
488

    
489

    
490
Version 2.0.5
491
-------------
492

    
493
*(Released Thu, 17 Dec 2009)*
494

    
495
- Fix security issue due to missing validation of iallocator names; this
496
  allows local and remote execution of arbitrary executables
497
- Fix failure of gnt-node list during instance removal
498
- Ship the RAPI documentation in the archive
499

    
500

    
501
Version 2.0.4
502
-------------
503

    
504
*(Released Wed, 30 Sep 2009)*
505

    
506
- Fixed many wrong messages
507
- Fixed a few bugs related to the locking library
508
- Fixed MAC checking at instance creation time
509
- Fixed a DRBD parsing bug related to gaps in /proc/drbd
510
- Fixed a few issues related to signal handling in both daemons and
511
  scripts
512
- Fixed the example startup script provided
513
- Fixed insserv dependencies in the example startup script (patch from
514
  Debian)
515
- Fixed handling of drained nodes in the iallocator framework
516
- Fixed handling of KERNEL_PATH parameter for xen-hvm (Debian bug
517
  #528618)
518
- Fixed error related to invalid job IDs in job polling
519
- Fixed job/opcode persistence on unclean master shutdown
520
- Fixed handling of partial job processing after unclean master
521
  shutdown
522
- Fixed error reporting from LUs, previously all errors were converted
523
  into execution errors
524
- Fixed error reporting from burnin
525
- Decreased significantly the memory usage of the job queue
526
- Optimised slightly multi-job submission
527
- Optimised slightly opcode loading
528
- Backported the multi-job submit framework from the development
529
  branch; multi-instance start and stop should be faster
530
- Added script to clean archived jobs after 21 days; this will reduce
531
  the size of the queue directory
532
- Added some extra checks in disk size tracking
533
- Added an example ethers hook script
534
- Added a cluster parameter that prevents Ganeti from modifying of
535
  /etc/hosts
536
- Added more node information to RAPI responses
537
- Added a ``gnt-job watch`` command that allows following the ouput of a
538
  job
539
- Added a bind-address option to ganeti-rapi
540
- Added more checks to the configuration verify
541
- Enhanced the burnin script such that some operations can be retried
542
  automatically
543
- Converted instance reinstall to multi-instance model
544

    
545

    
546
Version 2.0.3
547
-------------
548

    
549
*(Released Fri, 7 Aug 2009)*
550

    
551
- Added ``--ignore-size`` to the ``gnt-instance activate-disks`` command
552
  to allow using the pre-2.0.2 behaviour in activation, if any existing
553
  instances have mismatched disk sizes in the configuration
554
- Added ``gnt-cluster repair-disk-sizes`` command to check and update
555
  any configuration mismatches for disk sizes
556
- Added ``gnt-master cluste-failover --no-voting`` to allow master
557
  failover to work on two-node clusters
558
- Fixed the ``--net`` option of ``gnt-backup import``, which was
559
  unusable
560
- Fixed detection of OS script errors in ``gnt-backup export``
561
- Fixed exit code of ``gnt-backup export``
562

    
563

    
564
Version 2.0.2
565
-------------
566

    
567
*(Released Fri, 17 Jul 2009)*
568

    
569
- Added experimental support for stripped logical volumes; this should
570
  enhance performance but comes with a higher complexity in the block
571
  device handling; stripping is only enabled when passing
572
  ``--with-lvm-stripecount=N`` to ``configure``, but codepaths are
573
  affected even in the non-stripped mode
574
- Improved resiliency against transient failures at the end of DRBD
575
  resyncs, and in general of DRBD resync checks
576
- Fixed a couple of issues with exports and snapshot errors
577
- Fixed a couple of issues in instance listing
578
- Added display of the disk size in ``gnt-instance info``
579
- Fixed checking for valid OSes in instance creation
580
- Fixed handling of the "vcpus" parameter in instance listing and in
581
  general of invalid parameters
582
- Fixed http server library, and thus RAPI, to handle invalid
583
  username/password combinations correctly; this means that now they
584
  report unauthorized for queries too, not only for modifications,
585
  allowing earlier detect of configuration problems
586
- Added a new "role" node list field, equivalent to the master/master
587
  candidate/drained/offline flags combinations
588
- Fixed cluster modify and changes of candidate pool size
589
- Fixed cluster verify error messages for wrong files on regular nodes
590
- Fixed a couple of issues with node demotion from master candidate role
591
- Fixed node readd issues
592
- Added non-interactive mode for ``ganeti-masterd --no-voting`` startup
593
- Added a new ``--no-voting`` option for masterfailover to fix failover
594
  on two-nodes clusters when the former master node is unreachable
595
- Added instance reinstall over RAPI
596

    
597

    
598
Version 2.0.1
599
-------------
600

    
601
*(Released Tue, 16 Jun 2009)*
602

    
603
- added ``-H``/``-B`` startup parameters to ``gnt-instance``, which will
604
  allow re-adding the start in single-user option (regression from 1.2)
605
- the watcher writes the instance status to a file, to allow monitoring
606
  to report the instance status (from the master) based on cached
607
  results of the watcher's queries; while this can get stale if the
608
  watcher is being locked due to other work on the cluster, this is
609
  still an improvement
610
- the watcher now also restarts the node daemon and the rapi daemon if
611
  they died
612
- fixed the watcher to handle full and drained queue cases
613
- hooks export more instance data in the environment, which helps if
614
  hook scripts need to take action based on the instance's properties
615
  (no longer need to query back into ganeti)
616
- instance failovers when the instance is stopped do not check for free
617
  RAM, so that failing over a stopped instance is possible in low memory
618
  situations
619
- rapi uses queries for tags instead of jobs (for less job traffic), and
620
  for cluster tags it won't talk to masterd at all but read them from
621
  ssconf
622
- a couple of error handling fixes in RAPI
623
- drbd handling: improved the error handling of inconsistent disks after
624
  resync to reduce the frequency of "there are some degraded disks for
625
  this instance" messages
626
- fixed a bug in live migration when DRBD doesn't want to reconnect (the
627
  error handling path called a wrong function name)
628

    
629

    
630
Version 2.0.0 final
631
-------------------
632

    
633
*(Released Wed, 27 May 2009)*
634

    
635
- no changes from rc5
636

    
637

    
638
Version 2.0 release candidate 5
639
-------------------------------
640

    
641
*(Released Wed, 20 May 2009)*
642

    
643
- fix a couple of bugs (validation, argument checks)
644
- fix ``gnt-cluster getmaster`` on non-master nodes (regression)
645
- some small improvements to RAPI and IAllocator
646
- make watcher automatically start the master daemon if down
647

    
648

    
649
Version 2.0 release candidate 4
650
-------------------------------
651

    
652
*(Released Mon, 27 Apr 2009)*
653

    
654
- change the OS list to not require locks; this helps with big clusters
655
- fix ``gnt-cluster verify`` and ``gnt-cluster verify-disks`` when the
656
  volume group is broken
657
- ``gnt-instance info``, without any arguments, doesn't run for all
658
  instances anymore; either pass ``--all`` or pass the desired
659
  instances; this helps against mistakes on big clusters where listing
660
  the information for all instances takes a long time
661
- miscellaneous doc and man pages fixes
662

    
663

    
664
Version 2.0 release candidate 3
665
-------------------------------
666

    
667
*(Released Wed, 8 Apr 2009)*
668

    
669
- Change the internal locking model of some ``gnt-node`` commands, in
670
  order to reduce contention (and blocking of master daemon) when
671
  batching many creation/reinstall jobs
672
- Fixes to Xen soft reboot
673
- No longer build documentation at build time, instead distribute it in
674
  the archive, in order to reduce the need for the whole docbook/rst
675
  toolchains
676

    
677

    
678
Version 2.0 release candidate 2
679
-------------------------------
680

    
681
*(Released Fri, 27 Mar 2009)*
682

    
683
- Now the cfgupgrade scripts works and can upgrade 1.2.7 clusters to 2.0
684
- Fix watcher startup sequence, improves the behaviour of busy clusters
685
- Some other fixes in ``gnt-cluster verify``, ``gnt-instance
686
  replace-disks``, ``gnt-instance add``, ``gnt-cluster queue``, KVM VNC
687
  bind address and other places
688
- Some documentation fixes and updates
689

    
690

    
691
Version 2.0 release candidate 1
692
-------------------------------
693

    
694
*(Released Mon, 2 Mar 2009)*
695

    
696
- More documentation updates, now all docs should be more-or-less
697
  up-to-date
698
- A couple of small fixes (mixed hypervisor clusters, offline nodes,
699
  etc.)
700
- Added a customizable HV_KERNEL_ARGS hypervisor parameter (for Xen PVM
701
  and KVM)
702
- Fix an issue related to $libdir/run/ganeti and cluster creation
703

    
704

    
705
Version 2.0 beta 2
706
------------------
707

    
708
*(Released Thu, 19 Feb 2009)*
709

    
710
- Xen PVM and KVM have switched the default value for the instance root
711
  disk to the first partition on the first drive, instead of the whole
712
  drive; this means that the OS installation scripts must be changed
713
  accordingly
714
- Man pages have been updated
715
- RAPI has been switched by default to HTTPS, and the exported functions
716
  should all work correctly
717
- RAPI v1 has been removed
718
- Many improvements to the KVM hypervisor
719
- Block device errors are now better reported
720
- Many other bugfixes and small improvements
721

    
722

    
723
Version 2.0 beta 1
724
------------------
725

    
726
*(Released Mon, 26 Jan 2009)*
727

    
728
- Version 2 is a general rewrite of the code and therefore the
729
  differences are too many to list, see the design document for 2.0 in
730
  the ``doc/`` subdirectory for more details
731
- In this beta version there is not yet a migration path from 1.2 (there
732
  will be one in the final 2.0 release)
733
- A few significant changes are:
734

    
735
  - all commands are executed by a daemon (``ganeti-masterd``) and the
736
    various ``gnt-*`` commands are just front-ends to it
737
  - all the commands are entered into, and executed from a job queue,
738
    see the ``gnt-job(8)`` manpage
739
  - the RAPI daemon supports read-write operations, secured by basic
740
    HTTP authentication on top of HTTPS
741
  - DRBD version 0.7 support has been removed, DRBD 8 is the only
742
    supported version (when migrating from Ganeti 1.2 to 2.0, you need
743
    to migrate to DRBD 8 first while still running Ganeti 1.2)
744
  - DRBD devices are using statically allocated minor numbers, which
745
    will be assigned to existing instances during the migration process
746
  - there is support for both Xen PVM and Xen HVM instances running on
747
    the same cluster
748
  - KVM virtualization is supported too
749
  - file-based storage has been implemented, which means that it is
750
    possible to run the cluster without LVM and DRBD storage, for
751
    example using a shared filesystem exported from shared storage (and
752
    still have live migration)
753

    
754

    
755
Version 1.2.7
756
-------------
757

    
758
*(Released Tue, 13 Jan 2009)*
759

    
760
- Change the default reboot type in ``gnt-instance reboot`` to "hard"
761
- Reuse the old instance mac address by default on instance import, if
762
  the instance name is the same.
763
- Handle situations in which the node info rpc returns incomplete
764
  results (issue 46)
765
- Add checks for tcp/udp ports collisions in ``gnt-cluster verify``
766
- Improved version of batcher:
767

    
768
  - state file support
769
  - instance mac address support
770
  - support for HVM clusters/instances
771

    
772
- Add an option to show the number of cpu sockets and nodes in
773
  ``gnt-node list``
774
- Support OSes that handle more than one version of the OS api (but do
775
  not change the current API in any other way)
776
- Fix ``gnt-node migrate``
777
- ``gnt-debug`` man page
778
- Fixes various more typos and small issues
779
- Increase disk resync maximum speed to 60MB/s (from 30MB/s)
780

    
781

    
782
Version 1.2.6
783
-------------
784

    
785
*(Released Wed, 24 Sep 2008)*
786

    
787
- new ``--hvm-nic-type`` and ``--hvm-disk-type`` flags to control the
788
  type of disk exported to fully virtualized instances.
789
- provide access to the serial console of HVM instances
790
- instance auto_balance flag, set by default. If turned off it will
791
  avoid warnings on cluster verify if there is not enough memory to fail
792
  over an instance. in the future it will prevent automatically failing
793
  it over when we will support that.
794
- batcher tool for instance creation, see ``tools/README.batcher``
795
- ``gnt-instance reinstall --select-os`` to interactively select a new
796
  operating system when reinstalling an instance.
797
- when changing the memory amount on instance modify a check has been
798
  added that the instance will be able to start. also warnings are
799
  emitted if the instance will not be able to fail over, if auto_balance
800
  is true.
801
- documentation fixes
802
- sync fields between ``gnt-instance list/modify/add/import``
803
- fix a race condition in drbd when the sync speed was set after giving
804
  the device a remote peer.
805

    
806

    
807
Version 1.2.5
808
-------------
809

    
810
*(Released Tue, 22 Jul 2008)*
811

    
812
- note: the allowed size and number of tags per object were reduced
813
- fix a bug in ``gnt-cluster verify`` with inconsistent volume groups
814
- fixed twisted 8.x compatibility
815
- fixed ``gnt-instance replace-disks`` with iallocator
816
- add TCP keepalives on twisted connections to detect restarted nodes
817
- disk increase support, see ``gnt-instance grow-disk``
818
- implement bulk node/instance query for RAPI
819
- add tags in node/instance listing (optional)
820
- experimental migration (and live migration) support, read the man page
821
  for ``gnt-instance migrate``
822
- the ``ganeti-watcher`` logs are now timestamped, and the watcher also
823
  has some small improvements in handling its state file
824

    
825

    
826
Version 1.2.4
827
-------------
828

    
829
*(Released Fri, 13 Jun 2008)*
830

    
831
- Experimental readonly, REST-based remote API implementation;
832
  automatically started on master node, TCP port 5080, if enabled by
833
  ``--enable-rapi`` parameter to configure script.
834
- Instance allocator support. Add and import instance accept a
835
  ``--iallocator`` parameter, and call that instance allocator to decide
836
  which node to use for the instance. The iallocator document describes
837
  what's expected from an allocator script.
838
- ``gnt-cluster verify`` N+1 memory redundancy checks: Unless passed the
839
  ``--no-nplus1-mem`` option ``gnt-cluster verify`` now checks that if a
840
  node is lost there is still enough memory to fail over the instances
841
  that reside on it.
842
- ``gnt-cluster verify`` hooks: it is now possible to add post-hooks to
843
  ``gnt-cluster verify``, to check for site-specific compliance. All the
844
  hooks will run, and their output, if any, will be displayed. Any
845
  failing hook will make the verification return an error value.
846
- ``gnt-cluster verify`` now checks that its peers are reachable on the
847
  primary and secondary interfaces
848
- ``gnt-node add`` now supports the ``--readd`` option, to readd a node
849
  that is still declared as part of the cluster and has failed.
850
- ``gnt-* list`` commands now accept a new ``-o +field`` way of
851
  specifying output fields, that just adds the chosen fields to the
852
  default ones.
853
- ``gnt-backup`` now has a new ``remove`` command to delete an existing
854
  export from the filesystem.
855
- New per-instance parameters hvm_acpi, hvm_pae and hvm_cdrom_image_path
856
  have been added. Using them you can enable/disable acpi and pae
857
  support, and specify a path for a cd image to be exported to the
858
  instance. These parameters as the name suggest only work on HVM
859
  clusters.
860
- When upgrading an HVM cluster to Ganeti 1.2.4, the values for ACPI and
861
  PAE support will be set to the previously hardcoded values, but the
862
  (previously hardcoded) path to the CDROM ISO image will be unset and
863
  if required, needs to be set manually with ``gnt-instance modify``
864
  after the upgrade.
865
- The address to which an instance's VNC console is bound is now
866
  selectable per-instance, rather than being cluster wide. Of course
867
  this only applies to instances controlled via VNC, so currently just
868
  applies to HVM clusters.
869

    
870

    
871
Version 1.2.3
872
-------------
873

    
874
*(Released Mon, 18 Feb 2008)*
875

    
876
- more tweaks to the disk activation code (especially helpful for DRBD)
877
- change the default ``gnt-instance list`` output format, now there is
878
  one combined status field (see the manpage for the exact values this
879
  field will have)
880
- some more fixes for the mac export to hooks change
881
- make Ganeti not break with DRBD 8.2.x (which changed the version
882
  format in ``/proc/drbd``) (issue 24)
883
- add an upgrade tool from "remote_raid1" disk template to "drbd" disk
884
  template, allowing migration from DRBD0.7+MD to DRBD8
885

    
886

    
887
Version 1.2.2
888
-------------
889

    
890
*(Released Wed, 30 Jan 2008)*
891

    
892
- fix ``gnt-instance modify`` breakage introduced in 1.2.1 with the HVM
893
  support (issue 23)
894
- add command aliases infrastructure and a few aliases
895
- allow listing of VCPUs in the ``gnt-instance list`` and improve the
896
  man pages and the ``--help`` option of ``gnt-node
897
  list``/``gnt-instance list``
898
- fix ``gnt-backup list`` with down nodes (issue 21)
899
- change the tools location (move from $pkgdatadir to $pkglibdir/tools)
900
- fix the dist archive and add a check for including svn/git files in
901
  the future
902
- some developer-related changes: improve the burnin and the QA suite,
903
  add an upload script for testing during development
904

    
905

    
906
Version 1.2.1
907
-------------
908

    
909
*(Released Wed, 16 Jan 2008)*
910

    
911
- experimental HVM support, read the install document, section
912
  "Initializing the cluster"
913
- allow for the PVM hypervisor per-instance kernel and initrd paths
914
- add a new command ``gnt-cluster verify-disks`` which uses a new
915
  algorithm to improve the reconnection of the DRBD pairs if the device
916
  on the secondary node has gone away
917
- make logical volume code auto-activate LVs at disk activation time
918
- slightly improve the speed of activating disks
919
- allow specification of the MAC address at instance creation time, and
920
  changing it later via ``gnt-instance modify``
921
- fix handling of external commands that generate lots of output on
922
  stderr
923
- update documentation with regard to minimum version of DRBD8 supported
924

    
925

    
926
Version 1.2.0
927
-------------
928

    
929
*(Released Tue, 4 Dec 2007)*
930

    
931
- Log the ``xm create`` output to the node daemon log on failure (to
932
  help diagnosing the error)
933
- In debug mode, log all external commands output if failed to the logs
934
- Change parsing of lvm commands to ignore stderr
935

    
936

    
937
Version 1.2b3
938
-------------
939

    
940
*(Released Wed, 28 Nov 2007)*
941

    
942
- Another round of updates to the DRBD 8 code to deal with more failures
943
  in the replace secondary node operation
944
- Some more logging of failures in disk operations (lvm, drbd)
945
- A few documentation updates
946
- QA updates
947

    
948

    
949
Version 1.2b2
950
-------------
951

    
952
*(Released Tue, 13 Nov 2007)*
953

    
954
- Change configuration file format from Python's Pickle to JSON.
955
  Upgrading is possible using the cfgupgrade utility.
956
- Add support for DRBD 8.0 (new disk template ``drbd``) which allows for
957
  faster replace disks and is more stable (DRBD 8 has many improvements
958
  compared to DRBD 0.7)
959
- Added command line tags support (see man pages for ``gnt-instance``,
960
  ``gnt-node``, ``gnt-cluster``)
961
- Added instance rename support
962
- Added multi-instance startup/shutdown
963
- Added cluster rename support
964
- Added ``gnt-node evacuate`` to simplify some node operations
965
- Added instance reboot operation that can speedup reboot as compared to
966
  stop and start
967
- Soften the requirement that hostnames are in FQDN format
968
- The ``ganeti-watcher`` now activates drbd pairs after secondary node
969
  reboots
970
- Removed dependency on debian's patched fping that uses the
971
  non-standard ``-S`` option
972
- Now the OS definitions are searched for in multiple, configurable
973
  paths (easier for distros to package)
974
- Some changes to the hooks infrastructure (especially the new
975
  post-configuration update hook)
976
- Other small bugfixes
977

    
978
.. vim: set textwidth=72 :
979
.. Local Variables:
980
.. mode: rst
981
.. fill-column: 72
982
.. End: