diff --git a/README.rst b/README.rst index 25e7aba..d17163d 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,21 @@ hypervisor, such as Citrix's XenServer. Features -------- -* TODO +The following features are supported since 0.3.1: + +* VDI streaming + It will allow the library user to create XenServer VDI from a gzipped + image data stream; or create gzipped image data stream from a specified + XenServer VDI. By comparing to the existing dom0 glance plugin, the + image data gets processed on the fly via streams. So it doesn't create + intermediate files. And it completely uses the formal VDI import or + export APIs when it exchanges VDI data with XenServer. + +* XAPI pool + With this feature, we can deploy OpenStack on hosts which belong to a + XAPI pool, so that we can get the benefits from XAPI pool features: + e.g. it's able to live migrate instance between two hosts without + moving the disks on shared storage. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Install Devstack on XenServer diff --git a/releasenotes/notes/vdi-stream-536202fc2f0a4d0a.yaml b/releasenotes/notes/vdi-stream-536202fc2f0a4d0a.yaml new file mode 100644 index 0000000..d4d151e --- /dev/null +++ b/releasenotes/notes/vdi-stream-536202fc2f0a4d0a.yaml @@ -0,0 +1,12 @@ +--- +features: + - | + The os-xenapi library now supports the VDI streaming feature which will + allow the library user to create XenServer VDI from a gzipped image data + stream; or create gzipped image data stream from a specified XenServer + VDI. + + By comparing to the existing dom0 glance plugin, the image data gets + processed on the fly via streams. So it doesn't create intermediate files. + And it completely uses the formal VDI import or export APIs when it + exchanges VDI data with XenServer. diff --git a/releasenotes/notes/xapi-pool-f6282fbca7c0690a.yaml b/releasenotes/notes/xapi-pool-f6282fbca7c0690a.yaml new file mode 100644 index 0000000..805264a --- /dev/null +++ b/releasenotes/notes/xapi-pool-f6282fbca7c0690a.yaml @@ -0,0 +1,7 @@ +--- +features: + - | + The os-xenapi library now supports XAPI pool. We can deploy OpenStack on + hosts which belong to a XAPI pool, so that we can get the benefits from + XAPI pool features: e.g. it's able to live migrate between two hosts + without moving the disks on shared storage.