From 4bce7167338908b082eb8ea946adcd60109e0907 Mon Sep 17 00:00:00 2001 From: Fei Long Wang Date: Thu, 17 Nov 2016 16:59:57 +1300 Subject: [PATCH] Using v2 as the default version of Glance Glance API v1 has been deprecated, so it's better to use v2 as the default API version in openstackclient. Closes-Bug: 1642772 Change-Id: I7d9e3228a2f3a3d0da437b7ee6f23e528de27fd3 --- openstackclient/image/client.py | 2 +- releasenotes/notes/bug-1642772-19f53765bef8ee91.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/bug-1642772-19f53765bef8ee91.yaml diff --git a/openstackclient/image/client.py b/openstackclient/image/client.py index 1be6c7654d..b67c291fd0 100644 --- a/openstackclient/image/client.py +++ b/openstackclient/image/client.py @@ -22,7 +22,7 @@ from openstackclient.i18n import _ LOG = logging.getLogger(__name__) -DEFAULT_API_VERSION = '1' +DEFAULT_API_VERSION = '2' API_VERSION_OPTION = 'os_image_api_version' API_NAME = "image" API_VERSIONS = { diff --git a/releasenotes/notes/bug-1642772-19f53765bef8ee91.yaml b/releasenotes/notes/bug-1642772-19f53765bef8ee91.yaml new file mode 100644 index 0000000000..0e1a7f110c --- /dev/null +++ b/releasenotes/notes/bug-1642772-19f53765bef8ee91.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - Changed the default version of ``OS_IMAGE_API_VERSION`` to ``2``. Image v1 + has been deprecated for more than six months and other projects, such as + `shade` and `os-client-config` are using Image v2 by default as well. + [Bug `1642772 `_]