summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-07-25 20:39:52 +0000
committerGerrit Code Review <review@openstack.org>2018-07-25 20:39:52 +0000
commitcd88b8795ec7cea7c23f416793f4f689f8797587 (patch)
tree17348a8544395b1faf902c633ba2b116dde220db /releasenotes
parentd7fbd0a516596a56ce7728142621c9034e6c82b7 (diff)
parent2b33e6858a669426092ddeb210b6d1d21fa257f9 (diff)
downloadpython-glanceclient-cd88b8795ec7cea7c23f416793f4f689f8797587.tar.gz
Merge "Add release note for hidden images support"
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/hidden-images-support-9e2277ad62bf0d31.yaml23
1 files changed, 23 insertions, 0 deletions
diff --git a/releasenotes/notes/hidden-images-support-9e2277ad62bf0d31.yaml b/releasenotes/notes/hidden-images-support-9e2277ad62bf0d31.yaml
new file mode 100644
index 0000000..e67c05a
--- /dev/null
+++ b/releasenotes/notes/hidden-images-support-9e2277ad62bf0d31.yaml
@@ -0,0 +1,23 @@
+---
+features:
+ - |
+ This release adds client support for the Glance "hidden images"
+ feature described in the spec `Operator maintained images lifecycle
+ <https://specs.openstack.org/openstack/glance-specs/specs/rocky/approved/glance/operator-image-workflow.html>`_.
+
+ Support in the glanceclient includes the following:
+
+ - The following calls now allow the specification of a ``--hidden``
+ option that takes a boolean value (``true`` or ``false``). When
+ this option is omitted, the default value is ``false``.
+
+ * ``image-create``
+ * ``image-create-via-import``
+ * ``image-update``
+
+ - The ``image-list`` call now allows the specification of a
+ ``--hidden`` filter that takes a boolean value (``true`` or
+ ``false``). By default, "hidden" images are not displayed
+ in the ``image-list`` response (that's why they're called
+ "hidden"). To see those images, use ``--hidden true`` as a
+ filter on the ``image-list`` call.