summaryrefslogtreecommitdiff
path: root/doc
diff options
authorThomas Goirand <zigo@debian.org>2015-04-27 21:59:26 +0000
committergit-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com>2015-04-28 04:19:47 +0000
commitae5b9e8ef6e165eb7cfa9b6e447a62f226a3bee9 (patch)
tree5ddfc7adf4b5c2b69b27606a942ae5bb6a95c986 /doc
parent7a6a6ae6e2d9a7b617b649e78b99140b8a0e7677 (diff)
1.0.3-1 (patches unapplied)import/1.0.3-1
Imported using git-ubuntu import.
Notes
Notes: * New upstream release. * Uploading to unstable. * Removed useless patches.
Diffstat (limited to 'doc')
-rw-r--r--doc/source/command-objects/catalog.rst2
-rw-r--r--doc/source/command-objects/flavor.rst18
-rw-r--r--doc/source/command-objects/group.rst5
-rw-r--r--doc/source/command-objects/hypervisor-stats.rst16
-rw-r--r--doc/source/command-objects/hypervisor.rst36
-rw-r--r--doc/source/command-objects/image.rst27
-rw-r--r--doc/source/command-objects/network.rst135
-rw-r--r--doc/source/command-objects/object.rst2
-rw-r--r--doc/source/command-objects/project.rst6
-rw-r--r--doc/source/command-objects/server.rst8
-rw-r--r--doc/source/command-objects/trust.rst101
-rw-r--r--doc/source/command-objects/user.rst7
-rw-r--r--doc/source/command-objects/volume.rst11
-rw-r--r--doc/source/commands.rst3
-rw-r--r--doc/source/man/openstack.rst2
-rw-r--r--doc/source/releases.rst133
16 files changed, 435 insertions, 77 deletions
diff --git a/doc/source/command-objects/catalog.rst b/doc/source/command-objects/catalog.rst
index 89db95d..4319fb1 100644
--- a/doc/source/command-objects/catalog.rst
+++ b/doc/source/command-objects/catalog.rst
@@ -2,7 +2,7 @@
catalog
=======
-Identity v2
+Identity v2, v3
catalog list
------------
diff --git a/doc/source/command-objects/flavor.rst b/doc/source/command-objects/flavor.rst
index 0083da0..fa9fd80 100644
--- a/doc/source/command-objects/flavor.rst
+++ b/doc/source/command-objects/flavor.rst
@@ -89,6 +89,24 @@ List flavors
.. code:: bash
os flavor list
+ [--public | --private | --all]
+ [--long]
+
+.. option:: --public
+
+ List only public flavors (default)
+
+.. option:: --private
+
+ List only private flavors
+
+.. option:: --all
+
+ List all flavors, whether public or private
+
+.. option:: --long
+
+ List additional fields in output
flavor show
-----------
diff --git a/doc/source/command-objects/group.rst b/doc/source/command-objects/group.rst
index 3e7e806..6c38505 100644
--- a/doc/source/command-objects/group.rst
+++ b/doc/source/command-objects/group.rst
@@ -151,7 +151,6 @@ Set group properties
os group set
[--name <name>]
- [--domain <domain>]
[--description <description>]
<group>
@@ -159,10 +158,6 @@ Set group properties
New group name
-.. option:: --domain <domain>
-
- New domain to contain <group> (name or ID)
-
.. option:: --description <description>
New group description
diff --git a/doc/source/command-objects/hypervisor-stats.rst b/doc/source/command-objects/hypervisor-stats.rst
new file mode 100644
index 0000000..06edf7a
--- /dev/null
+++ b/doc/source/command-objects/hypervisor-stats.rst
@@ -0,0 +1,16 @@
+================
+hypervisor stats
+================
+
+Compute v2
+
+hypervisor stats show
+---------------------
+
+Display hypervisor stats details
+
+.. program:: hypervisor stats show
+.. code:: bash
+
+ os hypervisor stats show
+
diff --git a/doc/source/command-objects/hypervisor.rst b/doc/source/command-objects/hypervisor.rst
new file mode 100644
index 0000000..d6d0469
--- /dev/null
+++ b/doc/source/command-objects/hypervisor.rst
@@ -0,0 +1,36 @@
+==========
+hypervisor
+==========
+
+Compute v2
+
+hypervisor list
+---------------
+
+List hypervisors
+
+.. program:: hypervisor list
+.. code:: bash
+
+ os hypervisor list
+ [--matching <hostname>]
+
+.. option:: --matching <hostname>
+
+ Filter hypervisors using <hostname> substring
+
+hypervisor show
+---------------
+
+Display hypervisor details
+
+.. program:: hypervisor show
+.. code:: bash
+
+ os hypervisor show
+ <hypervisor>
+
+.. _hypervisor_show-flavor:
+.. describe:: <hypervisor>
+
+ Hypervisor to display (name or ID)
diff --git a/doc/source/command-objects/image.rst b/doc/source/command-objects/image.rst
index d9b7726..83036a6 100644
--- a/doc/source/command-objects/image.rst
+++ b/doc/source/command-objects/image.rst
@@ -138,17 +138,38 @@ List available images
.. code:: bash
os image list
- [--page-size <size>]
+ [--public | --private | --shared]
+ [--property <key=value>]
[--long]
+ [--sort <key>[:<direction>]]
-.. option:: --page-size <size>
+.. option:: --public
+
+ List only public images
+
+.. option:: --private
+
+ List only private images
+
+.. option:: --shared
- Number of images to request in each paginated request
+ List only shared images
+
+ *Image version 2 only.*
+
+.. option:: --property <key=value>
+
+ Filter output based on property
.. option:: --long
List additional fields in output
+.. option:: --sort <key>[:<direction>]
+
+ Sort output by selected keys and directions(asc or desc) (default: asc),
+ multiple keys and directions can be specified separated by comma
+
image save
----------
diff --git a/doc/source/command-objects/network.rst b/doc/source/command-objects/network.rst
new file mode 100644
index 0000000..0edd298
--- /dev/null
+++ b/doc/source/command-objects/network.rst
@@ -0,0 +1,135 @@
+=======
+network
+=======
+
+Network v2
+
+network create
+--------------
+
+Create new network
+
+.. program:: network create
+.. code:: bash
+
+ os network create
+ [--enable | --disable]
+ [--share | --no-share]
+ <name>
+
+.. option:: --enable
+
+ Enable network (default)
+
+.. option:: --disable
+
+ Disable network
+
+.. option:: --share
+
+ Share the network between projects
+
+.. option:: --no-share
+
+ Do not share the network between projects
+
+.. _network_create-name:
+.. describe:: <name>
+
+ New network name
+
+network delete
+--------------
+
+Delete network(s)
+
+.. program:: network delete
+.. code:: bash
+
+ os network delete
+ <network> [<network> ...]
+
+.. _network_delete-project:
+.. describe:: <network>
+
+ Network to delete (name or ID)
+
+network list
+------------
+
+List networks
+
+.. program:: network list
+.. code:: bash
+
+ os network list
+ [--external]
+ [--dhcp <dhcp-id>]
+ [--long]
+
+.. option:: --external
+
+ List external networks
+
+.. option:: --dhcp <dhcp-id>
+
+ DHCP agent ID
+
+.. option:: --long
+
+ List additional fields in output
+
+network set
+-----------
+
+Set network properties
+
+.. program:: network set
+.. code:: bash
+
+ os network set
+ [--name <name>]
+ [--enable | --disable]
+ [--share | --no-share]
+ <network>
+
+.. option:: --name <name>
+
+ Set network name
+
+.. option:: --enable
+
+ Enable network
+
+.. option:: --disable
+
+ Disable network
+
+.. option:: --share
+
+ Share the network between projects
+
+.. option:: --no-share
+
+ Do not share the network between projects
+
+.. _network_set-name:
+.. describe:: <network>
+
+ Network to modify (name or ID)
+
+network show
+------------
+
+Display network details
+
+.. program:: network show
+.. code:: bash
+
+ os network show
+ <network>
+
+.. _network_show-name:
+.. describe:: <network>
+
+ Network to display (name or ID)
diff --git a/doc/source/command-objects/object.rst b/doc/source/command-objects/object.rst
index 25cf69e..90bcfa1 100644
--- a/doc/source/command-objects/object.rst
+++ b/doc/source/command-objects/object.rst
@@ -44,7 +44,7 @@ Delete object from container
Object(s) to delete
-list object
+object list
-----------
List objects
diff --git a/doc/source/command-objects/project.rst b/doc/source/command-objects/project.rst
index b39edb4..422e239 100644
--- a/doc/source/command-objects/project.rst
+++ b/doc/source/command-objects/project.rst
@@ -118,12 +118,6 @@ Set project properties
Set project name
-.. option:: --domain <domain>
-
- Set domain owning :ref:`\<project\> <project_set-project>` (name or ID)
-
- .. versionadded:: 3
-
.. option:: --description <description>
Set project description
diff --git a/doc/source/command-objects/server.rst b/doc/source/command-objects/server.rst
index 583acae..3455558 100644
--- a/doc/source/command-objects/server.rst
+++ b/doc/source/command-objects/server.rst
@@ -225,7 +225,7 @@ List servers
server lock
-----------
-Lock server
+Lock a server. A non-admin user will not be able to execute actions
.. program:: server lock
.. code:: bash
@@ -423,16 +423,16 @@ Scale server to a new flavor
<server>
os server resize
- --verify | --revert
+ --confirm | --revert
<server>
.. option:: --flavor <flavor>
Resize server to specified flavor
-.. option:: --verify
+.. option:: --confirm
- Verify server resize is complete
+ Confirm server resize is complete
.. option:: --revert
diff --git a/doc/source/command-objects/trust.rst b/doc/source/command-objects/trust.rst
new file mode 100644
index 0000000..c5e16b4
--- /dev/null
+++ b/doc/source/command-objects/trust.rst
@@ -0,0 +1,101 @@
+=====
+trust
+=====
+
+Identity v3
+
+trust create
+------------
+
+Create new trust
+
+.. program:: trust create
+.. code:: bash
+
+ os trust create
+ --project <project>
+ --role <role>
+ [--impersonate]
+ [--expiration <expiration>]
+ [--project-domain <domain>]
+ [--trustor-domain <domain>]
+ [--trustee-domain <domain>]
+ <trustor>
+ <trustee>
+
+.. option:: --project <project>
+
+ Project being delegated (name or ID) (required)
+
+.. option:: --role <role>
+
+ Roles to authorize (name or ID) (repeat to set multiple values) (required)
+
+.. option:: --impersonate
+
+ Tokens generated from the trust will represent <trustor> (defaults to False)
+
+.. option:: --expiration <expiration>
+
+ Sets an expiration date for the trust (format of YYYY-mm-ddTHH:MM:SS)
+
+.. option:: --project-domain <domain>
+
+ Domain that contains <project> (name or ID)
+
+.. option:: --trustor-domain <domain>
+
+ Domain that contains <trustor> (name or ID)
+
+.. option:: --trustee-domain <domain>
+
+ Domain that contains <trustee> (name or ID)
+
+.. describe:: <trustor-user>
+
+ User that is delegating authorization (name or ID)
+
+.. describe:: <trustee-user>
+
+ User that is assuming authorization (name or ID)
+
+
+trust delete
+------------
+
+Delete trust(s)
+
+.. program:: trust delete
+.. code:: bash
+
+ os trust delete
+ <trust> [<trust> ...]
+
+.. describe:: <trust>
+
+ Trust(s) to delete
+
+trust list
+----------
+
+List trusts
+
+.. program:: trust list
+.. code:: bash
+
+ os trust list
+
+trust show
+----------
+
+Display trust details
+
+.. program:: trust show
+.. code:: bash
+
+ os trust show
+ <trust>
+
+.. describe:: <trust>
+
+ Trust to display
diff --git a/doc/source/command-objects/user.rst b/doc/source/command-objects/user.rst
index 9c81a40..79807b2 100644
--- a/doc/source/command-objects/user.rst
+++ b/doc/source/command-objects/user.rst
@@ -136,7 +136,6 @@ Set user properties
os user set
[--name <name>]
- [--domain <domain>]
[--project <project>]
[--password <password>]
[--email <email-address>]
@@ -148,12 +147,6 @@ Set user properties
Set user name
-.. option:: --domain <domain>
-
- Set default domain (name or ID)
-
- .. versionadded:: 3
-
.. option:: --project <project>
Set default project (name or ID)
diff --git a/doc/source/command-objects/volume.rst b/doc/source/command-objects/volume.rst
index 2eec2d7..3baae5d 100644
--- a/doc/source/command-objects/volume.rst
+++ b/doc/source/command-objects/volume.rst
@@ -14,7 +14,7 @@ Create new volume
os volume create
--size <size>
- [--snapshot-id <snapshot-id>]
+ [--snapshot <snapshot>]
[--description <description>]
[--type <volume-type>]
[--user <user>]
@@ -29,9 +29,9 @@ Create new volume
New volume size in GB
-.. option:: --snapshot-id <snapshot-id>
+.. option:: --snapshot <snapshot>
- Use <snapshot-id> as source of new volume
+ Use <snapshot> as source of new volume
.. option:: --description <description>
@@ -134,6 +134,7 @@ Set volume properties
os volume set
[--name <name>]
[--description <description>]
+ [--size <size>]
[--property <key=value> [...] ]
<volume>
@@ -145,6 +146,10 @@ Set volume properties
New volume description
+.. option:: --size <size>
+
+ Extend volume size in GB
+
.. option:: --property <key=value>
Property to add or modify for this volume (repeat option to set multiple properties)
diff --git a/doc/source/commands.rst b/doc/source/commands.rst
index 6dbaf11..42d041a 100644
--- a/doc/source/commands.rst
+++ b/doc/source/commands.rst
@@ -87,7 +87,8 @@ referring to both Compute and Volume quotas.
* ``flavor``: (**Compute**) predefined server configurations: ram, root disk, etc
* ``group``: (**Identity**) a grouping of users
* ``host``: Compute - the physical computer running a hypervisor
-* ``hypervisor``: Compute - the virtual machine manager
+* ``hypervisor``: (**Compute**) the virtual machine manager
+* ``hypervisor stats``: (**Compute**) hypervisor statistics over all compute nodes
* ``identity provider``: (**Identity**) a source of users and authentication
* ``image``: (**Image**) a disk image
* ``ip fixed``: Compute, Network - an internal IP address assigned to a server
diff --git a/doc/source/man/openstack.rst b/doc/source/man/openstack.rst
index 4a9df34..a6de54d 100644
--- a/doc/source/man/openstack.rst
+++ b/doc/source/man/openstack.rst
@@ -55,7 +55,7 @@ OPTIONS
:program:`openstack` takes global options that control overall behaviour and command-specific options that control the command operation. Most global options have a corresponding environment variable that may also be used to set the value. If both are present, the command-line option takes priority. The environment variable names are derived from the option name by dropping the leading dashes ('--'), converting each embedded dash ('-') to an underscore ('_'), and converting to upper case.
-:program:`openstack` recognizes the following global topions:
+:program:`openstack` recognizes the following global options:
:option:`--os-auth-plugin` <auth-plugin>
The authentication plugin to use when connecting to the Identity service. If this option is not set, :program:`openstack` will attempt to guess the authentication method to use based on the other options.
diff --git a/doc/source/releases.rst b/doc/source/releases.rst
index b8647a1..98aea30 100644
--- a/doc/source/releases.rst
+++ b/doc/source/releases.rst
@@ -2,6 +2,66 @@
Release Notes
=============
+1.0.3 (10 Mar 2015)
+===================
+
+* Add ``catalog list`` and ``catalog show`` commands for Identity v3.
+
+* Add 'hypervisor stats show' command .
+ Bug `1423748 <https://bugs.launchpad.net/bugs/1423748>`_
+
+* Rename ``server resize`` option ``--verify`` to ``confirm``. It conflicted with
+ the global ``--verify`` option and never worked prior to this.
+ Bug `1416542 <https://bugs.launchpad.net/bugs/1416542>`_
+
+* Add ``trust create/delete/list/show`` commands.
+ Bug `1413718 <https://bugs.launchpad.net/bugs/1413718>`_
+
+* Add ``--sort`` to ``image list`` command.
+ Bug `1410251 <https://bugs.launchpad.net/bugs/1410251>`_
+
+* Change ``volume create`` option ``--snapshot-id`` to ``--snapshot``. The old
+ name is still silently supported.
+ Bug `1418742 <https://bugs.launchpad.net/bugs/1418742>`_
+
+* Add Network API quotas to ``quota show`` command.
+ Bug `1411160 <https://bugs.launchpad.net/bugs/1411160>`_
+
+* Add ``--public``, ``--private``, ``--all``, ``--long`` options to
+ ``flavor list`` command. Remove "Extra Specs", "Swap" and"RXTX Factor"
+ columns from default output.
+ Bug `1411160 <https://bugs.launchpad.net/bugs/1411160>`_:
+
+* Add ``--shared``, ``--property`` options to ``image list`` command.
+ Bug `1401902 <https://bugs.launchpad.net/bugs/1401902>`_
+
+* Add ``--size`` option to ``volume set`` command.
+ Bug `1413954 <https://bugs.launchpad.net/bugs/1413954>`_
+
+* Bug `1353040 <https://bugs.launchpad.net/bugs/1353040>`_: server create --nic option clumsy
+* Bug `1366279 <https://bugs.launchpad.net/bugs/1366279>`_: nova lock command description rather terse
+* Bug `1399588 <https://bugs.launchpad.net/bugs/1399588>`_: Authentication needed for help command
+* Bug `1401902 <https://bugs.launchpad.net/bugs/1401902>`_: image filtering not available
+* Bug `1410251 <https://bugs.launchpad.net/bugs/1410251>`_: sort and filter options on openstack image list
+* Bug `1411160 <https://bugs.launchpad.net/bugs/1411160>`_: Add network support to quota show
+* Bug `1413718 <https://bugs.launchpad.net/bugs/1413718>`_: support keystone v3 trust extension
+* Bug `1413954 <https://bugs.launchpad.net/bugs/1413954>`_: missing volume extend
+* Bug `1415182 <https://bugs.launchpad.net/bugs/1415182>`_: Add extra validation when extending volume
+* Bug `1416542 <https://bugs.launchpad.net/bugs/1416542>`_: openstack client resize verify not completing workflow
+* Bug `1416780 <https://bugs.launchpad.net/bugs/1416780>`_: flavor list missing features
+* Bug `1417614 <https://bugs.launchpad.net/bugs/1417614>`_: tenant_id in server show
+* Bug `1417854 <https://bugs.launchpad.net/bugs/1417854>`_: Fix help messages for `os security group rule create` and `os security group rule list`
+* Bug `1418024 <https://bugs.launchpad.net/bugs/1418024>`_: wrong import of contrib module from novaclient
+* Bug `1418384 <https://bugs.launchpad.net/bugs/1418384>`_: openstack client help shows domain can be changed for a project
+* Bug `1418742 <https://bugs.launchpad.net/bugs/1418742>`_: volume create --snapshot-id is wrong
+* Bug `1418810 <https://bugs.launchpad.net/bugs/1418810>`_: auth with os-token fails with unexpected keyword argument 'user_domain_id'
+* Bug `1420080 <https://bugs.launchpad.net/bugs/1420080>`_: functional tests are failing with new keystoneclient release
+* Bug `1420732 <https://bugs.launchpad.net/bugs/1420732>`_: Better error message for sort_items
+* Bug `1423748 <https://bugs.launchpad.net/bugs/1423748>`_: Add support for hypervisor-stats and hypervisor-uptime command
+* Bug `1428912 <https://bugs.launchpad.net/bugs/1428912>`_: authentication through password prompting is broken
+* Bug `1429211 <https://bugs.launchpad.net/bugs/1429211>`_: 'catalog list' fails when region is not present
+
+
1.0.2 (19 Jan 2015)
===================
@@ -13,69 +73,52 @@ Release Notes
``OS_USER_DOMAIN_NAME`` are not set. This is also done for
``OS_PROJECT_DOMAIN_ID`` and ``OS_PROJECT_DOMAIN_NAME`.
(*Identity API v3 only*).
- Bug 1385338_: Improve domain related defaults when using v3 identity
+ Bug `1385338 <https://bugs.launchpad.net/bugs/1385338>`_: Improve domain related defaults when using v3 identity
* Add new ``usage show`` command to display project resource usage information.
- Bug 1400796_: Quick usage report - nova usage
+ Bug `1400796 <https://bugs.launchpad.net/bugs/1400796>`_: Quick usage report - nova usage
* Add ``--project`` option to ``user list`` command to filter users by project
(*Identity API v3 only*).
- Bug 1397251_: allow `openstack user list` to use other filters
+ Bug `1397251 <https://bugs.launchpad.net/bugs/1397251>`_: allow `openstack user list` to use other filters
* Add ``--user`` to ``project list`` command to filter projects by user
(*Identity API v3 only*).
- Bug 1394793_: support the keystone api /v3/users/$userid/projects
+ Bug `1394793 <https://bugs.launchpad.net/bugs/1394793>`_: support the keystone api /v3/users/$userid/projects
* Add ``--project`` and ``--user`` options to ``role list`` to filter roles
by project and/or user. This makes the v2 command very similar to the
v3 command.
(*Identity API v2 only*).
- Bug 1409179_: `user role list` command should be worked into `role list`
-
-* Bug 1390507_: Quota show requires cinder in keystone catalog
-* Bug 1400531_: Authentication failure results in useless error message
-* Bug 1400597_: delete multiple objects
-* Bug 1400795_: No list availability zones option
-* Bug 1404073_: type should be required for v2.0 service create
-* Bug 1404434_: add missing docs for service command
-* Bug 1404931_: volume list does not show attached servers
-* Bug 1404997_: Allow description to be set for service create/update
-* Bug 1405416_: Compute region selection broken
-* Bug 1406654_: Remove deprecated commands from help
-* Bug 1406737_: v3 endpoint related commands access service.name without check
-* Bug 1408585_: Backup list doesn't show backup's name
-* Bug 1410364_: Version discovery fails with default Keystone config
-* Bug 1411179_: network client don't use session
-* Bug 1411337_: identity v3 service list should have "description" column
-
-.. _1385338: https://bugs.launchpad.net/bugs/1385338
-.. _1406654: https://bugs.launchpad.net/bugs/1406654
-.. _1411337: https://bugs.launchpad.net/bugs/1411337
-.. _1400531: https://bugs.launchpad.net/bugs/1400531
-.. _1406737: https://bugs.launchpad.net/bugs/1406737
-.. _1409179: https://bugs.launchpad.net/bugs/1409179
-.. _1408585: https://bugs.launchpad.net/bugs/1408585
-.. _1405416: https://bugs.launchpad.net/bugs/1405416
-.. _1404931: https://bugs.launchpad.net/bugs/1404931
-.. _1404434: https://bugs.launchpad.net/bugs/1404434
-.. _1404073: https://bugs.launchpad.net/bugs/1404073
-.. _1400796: https://bugs.launchpad.net/bugs/1400796
-.. _1400795: https://bugs.launchpad.net/bugs/1400795
-.. _1400597: https://bugs.launchpad.net/bugs/1400597
-.. _1397251: https://bugs.launchpad.net/bugs/1397251
-.. _1394793: https://bugs.launchpad.net/bugs/1394793
-.. _1390507: https://bugs.launchpad.net/bugs/1390507
-.. _1410364: https://bugs.launchpad.net/bugs/1410364
-.. _1404997: https://bugs.launchpad.net/bugs/1404997
-.. _1411179: https://bugs.launchpad.net/bugs/1411179
+ Bug `1406737 <https://bugs.launchpad.net/bugs/1406737>`_: `user role list` command should be worked into `role list`
+
+* Bug `1385338 <https://bugs.launchpad.net/bugs/1385338>`_: Improve domain related defaults when using v3 identity API
+* Bug `1390507 <https://bugs.launchpad.net/bugs/1390507>`_: Quota show requires cinder in keystone catalog
+* Bug `1394793 <https://bugs.launchpad.net/bugs/1394793>`_: support the keystone api /v3/users/$userid/projects
+* Bug `1397251 <https://bugs.launchpad.net/bugs/1397251>`_: allow `openstack user list` to use other filters
+* Bug `1399757 <https://bugs.launchpad.net/bugs/1399757>`_: ec2 credentials create fails in 1.0.0
+* Bug `1400531 <https://bugs.launchpad.net/bugs/1400531>`_: Authentication failure results in useless error message
+* Bug `1400597 <https://bugs.launchpad.net/bugs/1400597>`_: delete multiple objects
+* Bug `1400795 <https://bugs.launchpad.net/bugs/1400795>`_: No list availability zones option
+* Bug `1400796 <https://bugs.launchpad.net/bugs/1400796>`_: Quick usage report - nova usage
+* Bug `1404073 <https://bugs.launchpad.net/bugs/1404073>`_: type should be required for v2.0 service create
+* Bug `1404434 <https://bugs.launchpad.net/bugs/1404434>`_: add missing docs for service command
+* Bug `1404931 <https://bugs.launchpad.net/bugs/1404931>`_: volume list does not show attached servers
+* Bug `1404997 <https://bugs.launchpad.net/bugs/1404997>`_: Allow description to be set for service create/update
+* Bug `1405416 <https://bugs.launchpad.net/bugs/1405416>`_: Compute region selection broken
+* Bug `1406654 <https://bugs.launchpad.net/bugs/1406654>`_: Remove deprecated commands from help
+* Bug `1406737 <https://bugs.launchpad.net/bugs/1406737>`_: v3 endpoint related commands access service.name without check
+* Bug `1408585 <https://bugs.launchpad.net/bugs/1408585>`_: Backup list doesn't show backup's name
+* Bug `1409179 <https://bugs.launchpad.net/bugs/1409179>`_: `user role list` command should be worked into `role list`
+* Bug `1410364 <https://bugs.launchpad.net/bugs/1410364>`_: Version discovery fails with default Keystone config
+* Bug `1411179 <https://bugs.launchpad.net/bugs/1411179>`_: network client don't use session
+* Bug `1411337 <https://bugs.launchpad.net/bugs/1411337>`_: identity v3 service list should have "description" column
1.0.1 (08 Dec 2014)
===================
-* Bug 1399757_: EC2 credentials create fails
-
-.. _1399757: https://bugs.launchpad.net/bugs/1399757
+* Bug `1399757 <https://bugs.launchpad.net/bugs/1399757>`_: EC2 credentials create fails
1.0.0 (04 Dec 2014)