From d054d3e695c359602d9bdacf4db756c2a3f4193d Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Thu, 2 Feb 2023 16:07:08 -0500 Subject: [PATCH] Add lunar and antelope identifiers for OpenStack --- zaza/openstack/utilities/os_versions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zaza/openstack/utilities/os_versions.py b/zaza/openstack/utilities/os_versions.py index 1674f51..281bfc2 100644 --- a/zaza/openstack/utilities/os_versions.py +++ b/zaza/openstack/utilities/os_versions.py @@ -40,6 +40,7 @@ UBUNTU_OPENSTACK_RELEASE = OrderedDict([ ('impish', 'xena'), ('jammy', 'yoga'), ('kinetic', 'zed'), + ('lunar', 'antelope'), ]) @@ -67,6 +68,7 @@ OPENSTACK_CODENAMES = OrderedDict([ ('2021.2', 'xena'), ('2022.1', 'yoga'), ('2022.2', 'zed'), + ('2023.1', 'antelope'), ]) OPENSTACK_RELEASES_PAIRS = [ @@ -81,7 +83,7 @@ OPENSTACK_RELEASES_PAIRS = [ 'focal_wallaby', 'hirsute_wallaby', 'focal_xena', 'impish_xena', 'focal_yoga', 'jammy_yoga', 'jammy_zed', - 'kinetic_zed', + 'kinetic_zed', 'jammy_antelope', 'lunar_antelope', ] SWIFT_CODENAMES = OrderedDict([ @@ -312,6 +314,7 @@ UBUNTU_RELEASES = ( 'impish', 'jammy', 'kinetic', + 'lunar', )