Ganeti 1.2.4 upgrade hint for existing HVM clusters
[ganeti-local] / NEWS
1 Version 1.2.4
2   - Experimental readonly, REST-based remote API implementation; automatically
3     started on master node, TCP port 5080, if enabled by --enable-rapi
4     parameter to configure script.
5   - Instance allocator support. Add and import instance accept a --iallocator
6     parameter, and call that instance allocator to decide which node to use for
7     the instance. The iallocator document describes what's expected from an
8     allocator script.
9   - gnt-cluster verify N+1 memory redundancy checks: Unless passed the
10     --no-nplus1-mem option gnt-cluster verify now checks that if a node is lost
11     there is still enough memory to fail over the instances that reside on it.
12   - gnt-cluster verify hooks: it is now possible to add post-hooks to
13     gnt-cluster verify, to check for site-specific compliance. All the hooks
14     will run, and their output, if any, will be displayed. Any failing hook
15     will make the verification return an error value.
16   - gnt-cluster verify now checks that its peers are reachable on the primary
17     and secondary interfaces
18   - gnt-node add now supports the --readd option, to readd a node that is still
19     declared as part of the cluster and has failed.
20   - gnt-* list commands now accept a new -o +field way of specifying output
21     fields, that just adds the chosen fields to the default ones.
22   - gnt-backup now has a new "remove" command to delete an existing export from
23     the filesystem.
24   - New per-instance parameters hvm_acpi, hvm_pae and hvm_cdrom_image_path have
25     been added. Using them you can enable/disable acpi and pae support, and
26     specify a path for a cd image to be exported to the instance. These
27     parameters as the name suggest only work on HVM clusters.
28   - When upgrading an HVM cluster to Ganeti 1.2.4, the values for ACPI and PAE
29     support will be set to the previously hardcoded values, but the (previously
30     hardcoded) path to the CDROM ISO image will be unset and if required, needs
31     to be set manually with gnt-instance modify after the upgrade..
32   - The address to which an instance's VNC console is bound is now selectable
33     per-instance, rather than being cluster wide. Of course this only applies
34     to instances controlled via VNC, so currently just applies to HVM clusters.
35
36 Version 1.2.3
37   - more tweaks to the disk activation code (especially helpful for DRBD)
38   - change the default ‘gnt-instance list’ output format, now there is
39     one combined status field (see the manpage for the exact values this
40     field will have)
41   - some more fixes for the mac export to hooks change
42   - make Ganeti not break with DRBD 8.2.x (which changed the version
43     format in /proc/drbd) (issue 24)
44   - add an upgrade tool from ‘remote_raid1’ disk template to ‘drbd’ disk
45     template, allowing migration from DRBD0.7+MD to DRBD8
46
47 Version 1.2.2
48   - fix ‘gnt-instance modify’ breakage introduced in 1.2.1 with the HVM
49     support (issue 23)
50   - add command aliases infrastructure and a few aliases
51   - allow listing of VCPUs in the gnt-instance list and improve the man
52     pages and the --help option of gnt-node/gnt-instance list
53   - fix gnt-backup list with down nodes (issue 21)
54   - change the tools location (move from $pkgdatadir to
55     $pkglibdir/tools)
56   - fix the dist archive and add a check for including svn/git files in
57     the future
58   - some developer-related changes: improve the burnin and the QA
59     suite, add an upload script for testing during development
60
61 Version 1.2.1
62   - experimental HVM support, read the install document, section
63     "Initializing the cluster"
64   - allow for the PVM hypervisor per-instance kernel and initrd paths
65   - add a new command ‘gnt-cluster verify-disks’ which uses a new
66     algorithm to improve the reconnection of the DRBD pairs if the
67     device on the secondary node has gone away
68   - make logical volume code auto-activate LVs at disk activation time
69   - slightly improve the speed of activating disks
70   - allow specification of the MAC address at instance creation time,
71     and changing it later via ‘gnt-instance modify’
72   - fix handling of external commands that generate lots of output on
73     stderr
74   - update documentation with regard to minimum version of DRBD8
75     supported
76
77 Version 1.2.0
78   - Log the ‘xm create’ output to the node daemon log on failure (to
79     help diagnosing the error)
80   - In debug mode, log all external commands output if failed to the
81     logs
82   - Change parsing of lvm commands to ignore stderr
83
84 Version 1.2b3
85   - Another round of updates to the DRBD 8 code to deal with more
86     failures in the replace secondary node operation
87   - Some more logging of failures in disk operations (lvm, drbd)
88   - A few documentation updates
89   - QA updates
90
91 Version 1.2b2
92   - Change configuration file format from Python's Pickle to JSON.
93     Upgrading is possible using the cfgupgrade utility.
94   - Add support for DRBD 8.0 (new disk template `drbd`) which allows for
95     faster replace disks and is more stable (DRBD 8 has many
96     improvements compared to DRBD 0.7)
97   - Added command line tags support (see man pages for gnt-instance,
98     gnt-node, gnt-cluster)
99   - Added instance rename support
100   - Added multi-instance startup/shutdown
101   - Added cluster rename support
102   - Added `gnt-node evacuate` to simplify some node operations
103   - Added instance reboot operation that can speedup reboot as compared
104     to stop and start
105   - Soften the requirement that hostnames are in FQDN format
106   - The ganeti-watcher now activates drbd pairs after secondary node
107     reboots
108   - Removed dependency on debian's patched fping that uses the
109     non-standard -S option
110   - Now the OS definitions are searched for in multiple, configurable
111     paths (easier for distros to package)
112   - Some changes to the hooks infrastructure (especially the new
113     post-configuration update hook)
114   - Other small bugfixes