From 79e43c7f684f18839a5ff59457cfc8e9116b3b59 Mon Sep 17 00:00:00 2001 From: Alex Kavanagh Date: Thu, 22 Oct 2020 15:28:16 +0100 Subject: [PATCH] bionic-train -> ussuri needs to upgrade placement For the openstack upgrade of train to ussuri, the placement charm needs to be upgraded. Add it to the UPGRADE_SERVICES. Related launchpad bug: LP:1724174 [1] [1]: https://bugs.launchpad.net/openstack-mojo-specs/+bug/1724174 --- zaza/openstack/utilities/openstack.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zaza/openstack/utilities/openstack.py b/zaza/openstack/utilities/openstack.py index b62885e..8d25433 100644 --- a/zaza/openstack/utilities/openstack.py +++ b/zaza/openstack/utilities/openstack.py @@ -123,6 +123,10 @@ CHARM_TYPES = { 'pkg': 'ceph-common', 'origin_setting': 'source' }, + 'placement': { + 'pkg': 'placement-common', + 'origin_setting': 'openstack-origin' + }, } # Older tests use the order the services appear in the list to imply @@ -143,6 +147,7 @@ UPGRADE_SERVICES = [ 'type': CHARM_TYPES['openstack-dashboard']}, {'name': 'ovn-central', 'type': CHARM_TYPES['ovn-central']}, {'name': 'ceph-mon', 'type': CHARM_TYPES['ceph-mon']}, + {'name': 'placement', 'type': CHARM_TYPES['placement']}, ]