<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-cinderclient.git/cinderclient/v2, branch 1.0.6</title>
<subtitle>opendev.org: openstack/python-cinderclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/'/>
<entry>
<title>Merge "Error if arguments are not supplied for rename commands"</title>
<updated>2013-10-03T23:35:23+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-10-03T23:35:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=edffce38e7486b6b34fd756111c869ff2a4197b3'/>
<id>edffce38e7486b6b34fd756111c869ff2a4197b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Fix find volume for migrate command"</title>
<updated>2013-10-03T23:25:32+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-10-03T23:25:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=5e925f8fd3fb2950abcdcab4c0e407c3f1c09a9f'/>
<id>5e925f8fd3fb2950abcdcab4c0e407c3f1c09a9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Implement qos support"</title>
<updated>2013-10-03T23:21:50+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-10-03T23:21:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=5e41e7e09f493f0ed055a5c5a9df25b3f41cad2f'/>
<id>5e41e7e09f493f0ed055a5c5a9df25b3f41cad2f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Use v2 endpoint with v2 shell for migration"</title>
<updated>2013-10-03T11:13:06+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-10-03T11:13:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=10a3c0fc8422efabeb0a0f718071021aae08176d'/>
<id>10a3c0fc8422efabeb0a0f718071021aae08176d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement qos support</title>
<updated>2013-10-02T19:42:03+00:00</updated>
<author>
<name>Zhiteng Huang</name>
<email>zhithuang@ebaysf.com</email>
</author>
<published>2013-09-05T04:02:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=87628cc4852ba49e4dd300091b4e5494d4507714'/>
<id>87628cc4852ba49e4dd300091b4e5494d4507714</id>
<content type='text'>
This patch enables Cinder v1/v2 QoS API support, adding following
subcommands to cinder client:
 * create QoS Specs
  cinder qos-create &lt;name&gt; &lt;key=value&gt; [&lt;key=value&gt; ...]
 * delete QoS Specs
  cinder qos-delete [--force &lt;True|False&gt;] &lt;qos_specs&gt;
  'force' is a flag indicates whether to delete a 'in-use' qos specs,
  which is still associated with other entities (e.g. volume types).
 * update QoS Specs
  - add new key/value pairs or update existing key/value
   cinder qos-key &lt;qos_specs_id&gt; set key=value [key=value ...]
  - delete key/value pairs
   cinder qos-key &lt;qos_specs id&gt; unset key [key ...]
 * associate QoS Specs with specified volume type
   cinder qos-associate &lt;qos_specs_id&gt; &lt;volume_type_id&gt;
 * disassociate QoS Specs from specified volume type
   cinder qos-disassociate &lt;qos_specs_id&gt; &lt;volume_type_id&gt;
 * disassociate QoS Specs from all associated volume types
   cinder qos-disassociate-all &lt;qos_specs&gt;
 * query entities that are associated with specified QoS Specs
   cinder qos-get-associations &lt;qos_specs_id&gt;
 * list all QoS Specs
   cinder qos-list

DocImpact

Change-Id: Ie1ddd29fede8660b475bac14c4fc35496d5fe0bc
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch enables Cinder v1/v2 QoS API support, adding following
subcommands to cinder client:
 * create QoS Specs
  cinder qos-create &lt;name&gt; &lt;key=value&gt; [&lt;key=value&gt; ...]
 * delete QoS Specs
  cinder qos-delete [--force &lt;True|False&gt;] &lt;qos_specs&gt;
  'force' is a flag indicates whether to delete a 'in-use' qos specs,
  which is still associated with other entities (e.g. volume types).
 * update QoS Specs
  - add new key/value pairs or update existing key/value
   cinder qos-key &lt;qos_specs_id&gt; set key=value [key=value ...]
  - delete key/value pairs
   cinder qos-key &lt;qos_specs id&gt; unset key [key ...]
 * associate QoS Specs with specified volume type
   cinder qos-associate &lt;qos_specs_id&gt; &lt;volume_type_id&gt;
 * disassociate QoS Specs from specified volume type
   cinder qos-disassociate &lt;qos_specs_id&gt; &lt;volume_type_id&gt;
 * disassociate QoS Specs from all associated volume types
   cinder qos-disassociate-all &lt;qos_specs&gt;
 * query entities that are associated with specified QoS Specs
   cinder qos-get-associations &lt;qos_specs_id&gt;
 * list all QoS Specs
   cinder qos-list

DocImpact

Change-Id: Ie1ddd29fede8660b475bac14c4fc35496d5fe0bc
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix find volume for migrate command</title>
<updated>2013-09-29T09:16:19+00:00</updated>
<author>
<name>Avishay Traeger</name>
<email>avishay@il.ibm.com</email>
</author>
<published>2013-09-29T09:16:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=7b93e66bf0b652b7bc51e329663a31adbd54f7b0'/>
<id>7b93e66bf0b652b7bc51e329663a31adbd54f7b0</id>
<content type='text'>
Recently _find_volume was removed, but not fixed for migrate.

Change-Id: I72b1b169bc67f89de10b7e729fc461b9114d3789
Closes-Bug: #1231117
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Recently _find_volume was removed, but not fixed for migrate.

Change-Id: I72b1b169bc67f89de10b7e729fc461b9114d3789
Closes-Bug: #1231117
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace OpenStack LLC with OpenStack Foundation</title>
<updated>2013-09-28T15:13:54+00:00</updated>
<author>
<name>ZhiQiang Fan</name>
<email>aji.zqfan@gmail.com</email>
</author>
<published>2013-09-19T19:31:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=5ad95e9fd236a1f27cbcf1105494d6680a7d8ffe'/>
<id>5ad95e9fd236a1f27cbcf1105494d6680a7d8ffe</id>
<content type='text'>
NOTE:
* openstack/common/* should be synced from oslo, so i leave them
untouched.
* add (c) symbol for related lines, leave others untouched.

Change-Id: I46a87c7f248d3468b1fdf5661411962faf2fb875
Fixes-Bug: #1214176
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NOTE:
* openstack/common/* should be synced from oslo, so i leave them
untouched.
* add (c) symbol for related lines, leave others untouched.

Change-Id: I46a87c7f248d3468b1fdf5661411962faf2fb875
Fixes-Bug: #1214176
</pre>
</div>
</content>
</entry>
<entry>
<title>Error if arguments are not supplied for rename commands</title>
<updated>2013-09-26T18:38:23+00:00</updated>
<author>
<name>Eric Harney</name>
<email>eharney@redhat.com</email>
</author>
<published>2013-08-08T16:02:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=876bff6398527a0686a1bc31f8ec7d45e3624a9a'/>
<id>876bff6398527a0686a1bc31f8ec7d45e3624a9a</id>
<content type='text'>
This changes behavior from:
$ cinder rename volume1
$

to

$ cinder rename volume1
ERROR: Must supply either display-name or display-description.

for both 'rename' and 'snapshot-rename'.

Change-Id: I675a3b1428a7fe10653394c80e4a5a473e14c740
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes behavior from:
$ cinder rename volume1
$

to

$ cinder rename volume1
ERROR: Must supply either display-name or display-description.

for both 'rename' and 'snapshot-rename'.

Change-Id: I675a3b1428a7fe10653394c80e4a5a473e14c740
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add volume name arguments"</title>
<updated>2013-09-25T07:56:03+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-09-25T07:56:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=665abd9acc4a266cf668c4562cf30fb85bf7cf2a'/>
<id>665abd9acc4a266cf668c4562cf30fb85bf7cf2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use v2 endpoint with v2 shell for migration</title>
<updated>2013-09-25T07:30:17+00:00</updated>
<author>
<name>Avishay Traeger</name>
<email>avishay@il.ibm.com</email>
</author>
<published>2013-09-25T07:30:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-cinderclient.git/commit/?id=327b397f6340c20d5f9e1fe3e80224aa0f5ae7fa'/>
<id>327b397f6340c20d5f9e1fe3e80224aa0f5ae7fa</id>
<content type='text'>
Change the volume migration shell to use the v2 endpoint for v2.

Change-Id: I0a902aa5e3f86c0d9562eb75677b11a364f9d371
Closes-Bug: #1230124
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change the volume migration shell to use the v2 endpoint for v2.

Change-Id: I0a902aa5e3f86c0d9562eb75677b11a364f9d371
Closes-Bug: #1230124
</pre>
</div>
</content>
</entry>
</feed>
