Add release notes for the first release

Change-Id: I210462825911fdd7eff1ee6b9db31c13dacd3c18
This commit is contained in:
Hongbin Lu 2017-02-18 17:57:24 -06:00
parent 2e6c771c47
commit 4efd0e2a7f
6 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,4 @@
---
other:
- Introduce a Fuxi devstack plugin. This enables developers to use devstack
with the Fuxi devstack plugin to quickly setup the development environment.

View File

@ -0,0 +1,12 @@
---
features:
- |
Support creating Docker volumes by using existing Cinder volumes.
To use this feature, users need to pass the ID of an existing Cinder
volume when he/she creates a volume in Docker. For example,
$ docker volume create --driver fuxi --name test --opt volume_id=<id>
If a volume_id is given, Fuxi will look up the Cinder volume by the given
ID and use it as the created Docker volume (instead of creating a new
volume in Cinder).

View File

@ -0,0 +1,6 @@
---
features:
- Enable Docker to use Manila (as an alternative to Cinder) to provide
volumes to Docker containers. Manila supports multiple back-ends and
share_proto. In this release, NFS share_proto is supported. The support
of other share_proto will be added in the future.

View File

@ -0,0 +1,3 @@
---
other:
- Add fullstack testing and setup the CI to run the tests.

View File

@ -0,0 +1,6 @@
---
features:
- Add support for cluster mode. In particular, users can create a Docker
volume in one node, and search it in other nodes. Before this feature
is implemented, each node manages its own set of volumes independently
and sharing volumes across different nodes in a cluster is impossible.

View File

@ -0,0 +1,5 @@
---
features:
- Implement the Docker volume plugin API for providing Cinder volumes to
Docker containers. Support the usage of Docker native API to create,
remove, list, get, mount, and unmount Cinder volumes.