OSC plugin support microversions 1.21 & 1.22

Fixes the OpenStackClient plugin so that microversions 1.21
and 1.22 are supported.

Change-Id: Iba0d24a8ec0880a43f124ef7a9c55a106c57f30e
Closes-Bug: #1620751
This commit is contained in:
Ruby Loo 2016-09-06 13:54:11 -04:00
parent ae5e6c4152
commit 8a9daaff40
2 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,7 @@ LOG = logging.getLogger(__name__)
DEFAULT_BAREMETAL_API_VERSION = '1.6'
API_VERSION_OPTION = 'os_baremetal_api_version'
API_NAME = 'baremetal'
LAST_KNOWN_API_VERSION = 20
LAST_KNOWN_API_VERSION = 22
API_VERSIONS = {
'1.%d' % i: 'ironicclient.v1.client.Client'
for i in range(1, LAST_KNOWN_API_VERSION + 1)

View File

@ -0,0 +1,4 @@
---
fixes:
- Fixes the OpenStackClient plugin so that
microversions 1.21 and 1.22 are supported.