summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-07-24 23:01:16 +0000
committerGerrit Code Review <review@openstack.org>2018-07-24 23:01:16 +0000
commitec559c5fbdca9dda67c810081d45534ddaca7491 (patch)
tree80e9c34f71f6673441a46f453367bc14a44e2696
parenta97d4194efb764696c3932f1758268bee1bbf4a4 (diff)
parent148d1c080fa50fc21b2944fb0c605dd8612ffa2f (diff)
downloadpython-glanceclient-ec559c5fbdca9dda67c810081d45534ddaca7491.tar.gz
Merge "Add multihash release note."
-rw-r--r--releasenotes/notes/multihash-support-f1474590cf3ef5cf.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/releasenotes/notes/multihash-support-f1474590cf3ef5cf.yaml b/releasenotes/notes/multihash-support-f1474590cf3ef5cf.yaml
new file mode 100644
index 0000000..5eb1f5f
--- /dev/null
+++ b/releasenotes/notes/multihash-support-f1474590cf3ef5cf.yaml
@@ -0,0 +1,15 @@
+---
+features:
+ - |
+ This release adds client support for the Glance "multihash" feature
+ introduced in Rocky. This feature introduces two new image properties,
+ ``os_hash_algo`` and ``os_hash_value``. The content of ``os_hash_algo``
+ is an algorithm identifier recognized by the Python ``hashlib`` library.
+ The ``os_hash_value``is a hexdigest of the image data computed using
+ this algorithm. The ``os_hash_algo`` is not end-user settable; it
+ is configured in Glance by the cloud operator. In the glanceclient,
+ the feature is limited solely to the display of these values.
+
+ If the "multihash" properties are not available on an image, their
+ values are displayed as ``None`` in the glanceclient image-show and
+ image-list responses.