diff options
author | Zuul <zuul@review.openstack.org> | 2019-03-20 12:32:33 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2019-03-20 12:32:33 +0000 |
commit | dd0f3df29f60c271d651aad0f1b523626198b154 (patch) | |
tree | 79bf1e1f0d722008ea2c35ee9cd598c2be4821b6 /ironic | |
parent | 35824fbcbc9474f196f8ca6ac3561d105c4de403 (diff) | |
parent | b805491c9bb35c9f3e0b439c81cc98c6ee2e5ba0 (diff) | |
download | ironic-dd0f3df29f60c271d651aad0f1b523626198b154.tar.gz |
Merge "Update release-mappings and api version data for Stein release"
Diffstat (limited to 'ironic')
-rw-r--r-- | ironic/common/release_mappings.py | 40 |
1 files changed, 36 insertions, 4 deletions
diff --git a/ironic/common/release_mappings.py b/ironic/common/release_mappings.py index 725a19bb5..61636574e 100644 --- a/ironic/common/release_mappings.py +++ b/ironic/common/release_mappings.py @@ -130,12 +130,27 @@ RELEASE_MAPPING = { 'VolumeTarget': ['1.0'], } }, - 'master': { + '12.0': { + 'api': '1.49', + 'rpc': '1.47', + 'objects': { + 'Node': ['1.29', '1.28'], + 'Conductor': ['1.3'], + 'Chassis': ['1.3'], + 'Port': ['1.8'], + 'Portgroup': ['1.4'], + 'Trait': ['1.0'], + 'TraitList': ['1.0'], + 'VolumeConnector': ['1.0'], + 'VolumeTarget': ['1.0'], + } + }, + '12.1': { 'api': '1.56', 'rpc': '1.48', 'objects': { 'Allocation': ['1.0'], - 'Node': ['1.32', '1.31', '1.30', '1.29', '1.28'], + 'Node': ['1.32', '1.31', '1.30'], 'Conductor': ['1.3'], 'Chassis': ['1.3'], 'DeployTemplate': ['1.0', '1.1'], @@ -147,6 +162,23 @@ RELEASE_MAPPING = { 'VolumeTarget': ['1.0'], } }, + 'master': { + 'api': '1.56', + 'rpc': '1.48', + 'objects': { + 'Allocation': ['1.0'], + 'Node': ['1.32'], + 'Conductor': ['1.3'], + 'Chassis': ['1.3'], + 'DeployTemplate': ['1.1'], + 'Port': ['1.9'], + 'Portgroup': ['1.4'], + 'Trait': ['1.0'], + 'TraitList': ['1.0'], + 'VolumeConnector': ['1.0'], + 'VolumeTarget': ['1.0'], + } + }, } # NOTE(xek): Assign each named release to the appropriate semver. @@ -162,9 +194,9 @@ RELEASE_MAPPING = { # # There should be at most two named mappings here. -# NOTE(TheJulia): remove queens prior to the Stein release. -RELEASE_MAPPING['queens'] = RELEASE_MAPPING['10.1'] +# NOTE(TheJulia): remove Rocky prior to the Train release. RELEASE_MAPPING['rocky'] = RELEASE_MAPPING['11.1'] +RELEASE_MAPPING['stein'] = RELEASE_MAPPING['12.1'] # List of available versions with named versions first; 'master' is excluded. RELEASE_VERSIONS = sorted(set(RELEASE_MAPPING) - {'master'}, reverse=True) |