Fetch next deployable release basen on OPENSTACK_RELEASE var

Right now we have mitaka and mitaka+UCA releases which both uses
Ubuntu as operation system. We want to predict "which release will be
taken for next operations".
'octane upgrade-env' now requires release id so this patch is required
for further changes
https://review.openstack.org/#/c/358881/

Change-Id: Icc4c2f534a13e11995129bad62b4fc985633fb34
This commit is contained in:
Vladimir Khlyunev 2016-08-24 11:49:43 +03:00
parent 3129a9dd11
commit ca7b2e49f6

View File

@ -2366,7 +2366,8 @@ class FuelWebClient29(object):
if (release["id"] > release_id and
release["operating_system"] ==
release_details["operating_system"] and
release["is_deployable"]):
release["is_deployable"] and
OPENSTACK_RELEASE in release["name"].lower()):
return release["id"]
return None