<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-glanceclient.git/glanceclient/v2, branch 3.3.0</title>
<subtitle>opendev.org: openstack/python-glanceclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/'/>
<entry>
<title>Get tasks associated with image</title>
<updated>2021-03-02T18:02:14+00:00</updated>
<author>
<name>Abhishek Kekane</name>
<email>akekane@redhat.com</email>
</author>
<published>2021-02-18T07:59:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=e0a35a1150a7afe1e28b8d9b59a9e41951276baa'/>
<id>e0a35a1150a7afe1e28b8d9b59a9e41951276baa</id>
<content type='text'>
Add support to get tasks associated with specific image.
bp: messages-api

Change-Id: Ia505cf6f47ca6c628e195be3ca5231d22d53040d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support to get tasks associated with specific image.
bp: messages-api

Change-Id: Ia505cf6f47ca6c628e195be3ca5231d22d53040d
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes "stores" property added to the image</title>
<updated>2020-07-30T17:39:31+00:00</updated>
<author>
<name>Erno Kuvaja</name>
<email>jokke@usr.fi</email>
</author>
<published>2020-07-30T17:39:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=77eab17cf9f3cf3f2578f73163cb816e425effa2'/>
<id>77eab17cf9f3cf3f2578f73163cb816e425effa2</id>
<content type='text'>
"stores" property gets added to the image when
`glance image-create-via-import` is called with --stores

Change-Id: I514e6e3ac2f3a1f56fb7883ed403a04b1e7f13b0
Closes-Bug: #1889666
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"stores" property gets added to the image when
`glance image-create-via-import` is called with --stores

Change-Id: I514e6e3ac2f3a1f56fb7883ed403a04b1e7f13b0
Closes-Bug: #1889666
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not use the six library.</title>
<updated>2020-06-23T19:51:07+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>tipecaml@gmail.com</email>
</author>
<published>2020-06-15T19:28:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=b513c8db4bf6a5b2eb0366117ca22e042dd3529e'/>
<id>b513c8db4bf6a5b2eb0366117ca22e042dd3529e</id>
<content type='text'>
Change-Id: I3dbfcfa0f5f590a41ed549afd44537d8ed41433a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I3dbfcfa0f5f590a41ed549afd44537d8ed41433a
</pre>
</div>
</content>
</entry>
<entry>
<title>Fail gracefully when MD5 is unavailable</title>
<updated>2020-05-04T12:56:58+00:00</updated>
<author>
<name>Brian Rosmaita</name>
<email>rosmaita.fossdev@gmail.com</email>
</author>
<published>2020-04-07T04:13:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=56186d6d5aa1a0c8fde99eeb535a650b0495925d'/>
<id>56186d6d5aa1a0c8fde99eeb535a650b0495925d</id>
<content type='text'>
The glanceclient currently assumes that MD5 will always be available.
This is not the case, however, in a FIPS-compliant environment.  This
patch enables the glanceclient to fail gracefully in such a case.

Closes-bug: #1871675
Change-Id: Ibd89989e06cc5be7da71f5f21561d73b5abc4104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The glanceclient currently assumes that MD5 will always be available.
This is not the case, however, in a FIPS-compliant environment.  This
patch enables the glanceclient to fail gracefully in such a case.

Closes-bug: #1871675
Change-Id: Ibd89989e06cc5be7da71f5f21561d73b5abc4104
</pre>
</div>
</content>
</entry>
<entry>
<title>Pass --all-stores, --allow-failure as bool to API</title>
<updated>2020-04-08T17:11:55+00:00</updated>
<author>
<name>Abhishek Kekane</name>
<email>akekane@redhat.com</email>
</author>
<published>2020-04-08T17:11:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=dff5c881bdbc7f0cf03d88e974ae4234cb646aa1'/>
<id>dff5c881bdbc7f0cf03d88e974ae4234cb646aa1</id>
<content type='text'>
Newly added command line options --all-stores, --allow-failure are boolean
but we are passing it as a string to glance API. This will cause problem if
those parameters are not converted to boolean at API side.

Passing these parameters as boolean instead of string to API.

Change-Id: I8d4eab9241fc9bb24bc40b47bf18d63c86a97d77
Closes-Bug: #1871674
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Newly added command line options --all-stores, --allow-failure are boolean
but we are passing it as a string to glance API. This will cause problem if
those parameters are not converted to boolean at API side.

Passing these parameters as boolean instead of string to API.

Change-Id: I8d4eab9241fc9bb24bc40b47bf18d63c86a97d77
Closes-Bug: #1871674
</pre>
</div>
</content>
</entry>
<entry>
<title>Update hacking for Python3</title>
<updated>2020-04-02T13:48:09+00:00</updated>
<author>
<name>Andreas Jaeger</name>
<email>aj@suse.com</email>
</author>
<published>2020-04-02T13:40:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=82da2378eaf1e2283ed623760d065cc972dd0871'/>
<id>82da2378eaf1e2283ed623760d065cc972dd0871</id>
<content type='text'>
The repo is Python 3 now, so update hacking to version 3.0 which
supports Python 3.

Fix problems found.

Remove hacking and friends from lower-constraints, they are not needed
for installation.

Change-Id: I5ae47a7b11ff29a301e440c15daf30db7738485b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The repo is Python 3 now, so update hacking to version 3.0 which
supports Python 3.

Fix problems found.

Remove hacking and friends from lower-constraints, they are not needed
for installation.

Change-Id: I5ae47a7b11ff29a301e440c15daf30db7738485b
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "update doc url to new"</title>
<updated>2020-03-26T16:32:58+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2020-03-26T16:32:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=6b5a16302218400650458738899c1fcbd8f4abfd'/>
<id>6b5a16302218400650458738899c1fcbd8f4abfd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Delete image from specific store</title>
<updated>2020-03-20T07:21:59+00:00</updated>
<author>
<name>Erno Kuvaja</name>
<email>jokke@usr.fi</email>
</author>
<published>2019-12-18T09:57:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=d91bcae8a509235ec17a60233e2c3e252b9a317d'/>
<id>d91bcae8a509235ec17a60233e2c3e252b9a317d</id>
<content type='text'>
Add support to delete image from specific store.

bp: delete-from-store
Change-Id: Ie57d7de5822264a5ea8a5f4587ab8cfb4afb79de
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support to delete image from specific store.

bp: delete-from-store
Change-Id: Ie57d7de5822264a5ea8a5f4587ab8cfb4afb79de
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for copy-image import method</title>
<updated>2020-02-27T06:49:11+00:00</updated>
<author>
<name>Abhishek Kekane</name>
<email>akekane@redhat.com</email>
</author>
<published>2020-02-21T10:10:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=2e0396c0c9576924703d79429f5c3f14619d8b8d'/>
<id>2e0396c0c9576924703d79429f5c3f14619d8b8d</id>
<content type='text'>
This change adds support for copy-image import method which will
copy existing images into multiple stores.

Change-Id: I748a8fb3dbaf9c2e4d887a2ecd4325e27a8429c4
bp: copy-image-multiple-stores
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change adds support for copy-image import method which will
copy existing images into multiple stores.

Change-Id: I748a8fb3dbaf9c2e4d887a2ecd4325e27a8429c4
bp: copy-image-multiple-stores
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for multi-store import</title>
<updated>2020-02-27T05:52:49+00:00</updated>
<author>
<name>Erno Kuvaja</name>
<email>jokke@usr.fi</email>
</author>
<published>2019-12-18T10:30:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-glanceclient.git/commit/?id=c23d86738fcfd55301471e8da2512642fd66eba3'/>
<id>c23d86738fcfd55301471e8da2512642fd66eba3</id>
<content type='text'>
This change adds support for providing multiple target
stores where image can be imported.

Co-authored-by: Erno Kuvaja &lt;jokke@usr.fi&gt;
Co-authored-by: Abhishek Kekane &lt;akekane@redhat.com&gt;

bp: import-multi-stores
Change-Id: I8730364263f1afd5d11fd56939851bda73a892bb
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change adds support for providing multiple target
stores where image can be imported.

Co-authored-by: Erno Kuvaja &lt;jokke@usr.fi&gt;
Co-authored-by: Abhishek Kekane &lt;akekane@redhat.com&gt;

bp: import-multi-stores
Change-Id: I8730364263f1afd5d11fd56939851bda73a892bb
</pre>
</div>
</content>
</entry>
</feed>
