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
This commit is contained in:
Fei Long Wang 2016-11-17 16:59:57 +13:00 committed by Steve Martinelli
parent 6eef3277f5
commit 4bce716733
2 changed files with 7 additions and 1 deletions

View File

@ -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 = {

View File

@ -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 <https://bugs.launchpad.net/bugs/1642772>`_]