From a3b15e665dd74cfda90e0bbe9e5b132a0d460845 Mon Sep 17 00:00:00 2001 From: Flavio Percoco Date: Tue, 15 Dec 2015 22:29:01 -0430 Subject: [PATCH] Document supported drivers and maintainers As per the latest communication sent to openstack-dev[0], this commit adds the list of drivers and maintainers to the glance_store documentation. The drivers listed here are considered supported by the overall community but mainly by the listed maintainers. Drivers that currently exist in the source tree that are not listed here will be marked as deprecated following what was communicated in the aforementioned thread[0]. [0] http://lists.openstack.org/pipermail/openstack-dev/2015-December/081966.html Change-Id: I0ae750a8bbd936e421a5221b7a97fef1f0d02750 --- doc/source/drivers/index.rst | 34 ++++++++++++++++++++++++++++++++++ doc/source/index.rst | 8 ++++++++ 2 files changed, 42 insertions(+) create mode 100644 doc/source/drivers/index.rst diff --git a/doc/source/drivers/index.rst b/doc/source/drivers/index.rst new file mode 100644 index 00000000..e24c9254 --- /dev/null +++ b/doc/source/drivers/index.rst @@ -0,0 +1,34 @@ + +Glance Store Drivers +==================== + +Glance store supports several different drivers. These drivers live +within the library's code base and they are maintained by either +members of the Glance community or OpenStack in general. Please, find +below the table of supported drivers and maintainers: + ++-------------------+---------------------+------------------------------------+------------------+ +| Driver | Maintainer | Email | IRC Nick | ++===================+=====================+====================================+==================+ +| File System | Glance Team | openstack-dev@lists.openstack.org | openstack-glance | ++-------------------+---------------------+------------------------------------+------------------+ +| HTTP | Glance Team | openstack-dev@lists.openstack.org | openstack-glance | ++-------------------+---------------------+------------------------------------+------------------+ +| RBD | Fei Long Wang | flwang@catalyst.net.nz | flwang | ++-------------------+---------------------+------------------------------------+------------------+ +| Cinder | Tomoki Sekiyama | tomoki.sekiyama.qu@hitachi.com | | ++-------------------+---------------------+------------------------------------+------------------+ +| Swift | Matthew Oliver | matt@oliver.net.au | mattoliverau | ++-------------------+---------------------+------------------------------------+------------------+ +| VMware | Sabari Murugesan | smurugesan@vmware.com | sabari | ++-------------------+---------------------+------------------------------------+------------------+ +| Sheepdog | YAMADA Hideki | yamada.hideki@lab.ntt.co.jp | yamada-h | ++-------------------+---------------------+------------------------------------+------------------+ + + +Indices and tables +------------------ + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/doc/source/index.rst b/doc/source/index.rst index a267c358..b4e9a902 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -10,6 +10,14 @@ Contents .. toctree:: :maxdepth: 1 +Store Drivers +============= + +.. toctree:: + :maxdepth: 1 + + drivers/index + Release Notes =============