Merge "Clean up for next release"

This commit is contained in:
Jenkins 2016-04-19 20:00:39 +00:00 committed by Gerrit Code Review
commit c3cc7d109d
11 changed files with 26 additions and 67 deletions

@ -13,6 +13,7 @@ User Documentation
.. toctree::
:maxdepth: 1
Manual Page <man/openstack>
command-list
commands
configuration
@ -22,7 +23,6 @@ User Documentation
interactive
humaninterfaceguide
backwards-incompatible
man/openstack
Getting Started
---------------

@ -1,5 +1,5 @@
---
features:
- |
Add support for the ``port create``, ``port list`` and ``port set`` commands.
Add ``port create``, ``port list`` and ``port set`` commands
[Bug `1519909 <https://bugs.launchpad.net/python-openstackclient/+bug/1519909>`_]

@ -1,18 +0,0 @@
---
features:
- |
Added support for setting volume type access to project.
By default, volumes types are public.
To create a private volume type, user needs to set is_public boolean
field to false at volume type creation time.
To control access to a private volume type, user needs to add access
of a private volume type to project.
So, this feature enables user to add private volume type access to a
project using below command
``volume type set --project <project> <volume_type>``.
[Bug 1554889 'https://bugs.launchpad.net/python-openstackclient/+bug/1554889'_]

@ -1,4 +1,4 @@
---
features:
- Command ``ip floating create`` is now available for neutron network.
upgrade:
- The ``ip floating create`` command now uses Network v2 when enabled
[Bug `1519502 <https://bugs.launchpad.net/python-openstackclient/+bug/1519502>`_]

@ -1,14 +1,11 @@
---
features:
- |
Added ``--image-property`` option to ``volume set`` command
Add ``--image-property`` option to ``volume set`` and ``volume unset`` commands
Image properties are copied from image when volume is created.
But since a volume is mutable, user sometime wants to update
image properties for volume.
Image properties are copied when a volume is created from an image.
The properties are immutable on the image itself but may be updated
or removed from the volume created from that image.
So, this fix enables user to update image properties of volume
using below command:
``volume set --image-property <key=value> <volume>``.
[Bug '1554877 <https://bugs.launchpad.net/python-openstackclient/+bug/1554877>'_]
[Bug `1554877 <https://bugs.launchpad.net/python-openstackclient/+bug/1554877>`_]
[Bug `1554879 <https://bugs.launchpad.net/python-openstackclient/+bug/1554879>`_]

@ -1,14 +0,0 @@
---
features:
- |
Added ``--image-property`` option to ``volume unset`` command
Image properties are copied from image when volume is created.
But since a volume is mutable, user sometime wants to delete
image properties for volume.
So, this fix enables user to delete image properties of volume
using below command:
``volume unset [--image-property <key>] <volume>``.
[Bug '1554879 <https://bugs.launchpad.net/python-openstackclient/+bug/1554879>'_]

@ -0,0 +1,12 @@
---
features:
- |
Add ``--project`` and ``--project-domain`` options to ``volume type set``
and ``volume type unset`` commands
Use the ``--project`` option to restrict a volume type to a specific project.
Volume types are public by default, restricted volume types should be made
private with the ``--private`` option to the ``volume create`` command.
[Bug `1554889 <https://bugs.launchpad.net/python-openstackclient/+bug/1554889>`_]
[Bug `1554890 <https://bugs.launchpad.net/python-openstackclient/+bug/1554890>`_]

@ -1,4 +1,4 @@
---
features:
- Command ``host set`` is now available for compute
- Add ``host set`` command
[Bug `1556929 <https://bugs.launchpad.net/python-openstackclient/+bug/1556929>`_]

@ -1,4 +1,4 @@
---
features:
- Add ``aggregate unset`` command for compute v2
- Add ``aggregate unset`` command
[Bug `1559866 <https://bugs.launchpad.net/python-openstackclient/+bug/1559866>`_]

@ -1,6 +1,6 @@
---
features:
- Add global options ``os-cert`` and --os-key`` to support client
certificate/key. Environment variables OS_CERT and OS_KEY, as well
- Add global options ``os-cert`` and ``--os-key`` to support client
certificate/key. Environment variables ``OS_CERT`` and ``OS_KEY``, as well
as the ``cert`` and ``key`` values in clouds.yaml may also be used
[Bug `1565112 <https://bugs.launchpad.net/bugs/1565112>`_]

@ -1,18 +0,0 @@
---
features:
- |
Added support for removing volume type access to project.
By default, volumes types are public.
To create a private volume type the ``--private`` option must be included
in the ``volume type create`` command.
To control access to a private volume type, user needs to add or remove
access of a private volume type to project.
This feature enables user to remove private volume type access to a
project using below command:
``volume type unset --project <project> <volume_type>``
[Bug 1554890 'https://bugs.launchpad.net/python-openstackclient/+bug/1554890'_]