From cc291b8400bae240d72a0cd2218be11b88dc1f41 Mon Sep 17 00:00:00 2001 From: Aurelien Lourot Date: Mon, 18 Oct 2021 10:18:39 +0200 Subject: [PATCH] Extend OPENSTACK_CODENAMES up to Yoga (#654) This dict is used in the OpenStack upgrade tests in order to automatically determine the next release and set the openstack-origin accordingly. Also taking the opportunity to extend neighboring lists. --- zaza/openstack/utilities/os_versions.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zaza/openstack/utilities/os_versions.py b/zaza/openstack/utilities/os_versions.py index 2ea089e..e67a97f 100644 --- a/zaza/openstack/utilities/os_versions.py +++ b/zaza/openstack/utilities/os_versions.py @@ -38,6 +38,7 @@ UBUNTU_OPENSTACK_RELEASE = OrderedDict([ ('groovy', 'victoria'), ('hirsute', 'wallaby'), ('impish', 'xena'), + ('jammy', 'yoga'), ]) @@ -61,6 +62,9 @@ OPENSTACK_CODENAMES = OrderedDict([ ('2019.2', 'train'), ('2020.1', 'ussuri'), ('2020.2', 'victoria'), + ('2021.1', 'wallaby'), + ('2021.2', 'xena'), + ('2022.1', 'yoga'), ]) OPENSTACK_RELEASES_PAIRS = [ @@ -74,7 +78,7 @@ OPENSTACK_RELEASES_PAIRS = [ 'focal_victoria', 'groovy_victoria', 'focal_wallaby', 'hirsute_wallaby', 'focal_xena', 'impish_xena', - 'focal_yoga' + 'focal_yoga', 'jammy_yoga', ] SWIFT_CODENAMES = OrderedDict([