From b61ca2a13cd3d63da76fbd2c4aa2f61d94431724 Mon Sep 17 00:00:00 2001 From: jianghua wang Date: Thu, 21 Sep 2017 08:46:17 +0000 Subject: [PATCH] Add reno for features in os-xenapi v0.3.1 Added reno for the following features: * VDI stream * XAPI pool And also updated README to include the feature information. Change-Id: I3ff557294d7b1249b832db94a7dc3d4388e48684 --- README.rst | 16 +++++++++++++++- .../notes/vdi-stream-536202fc2f0a4d0a.yaml | 12 ++++++++++++ .../notes/xapi-pool-f6282fbca7c0690a.yaml | 7 +++++++ 3 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/vdi-stream-536202fc2f0a4d0a.yaml create mode 100644 releasenotes/notes/xapi-pool-f6282fbca7c0690a.yaml 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.