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
This commit is contained in:
jianghua wang 2017-09-21 08:46:17 +00:00 committed by Jianghua Wang
parent 7dce682e2a
commit b61ca2a13c
3 changed files with 34 additions and 1 deletions

View File

@ -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

View File

@ -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.

View File

@ -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.