From 7f516a1e7bc2dd89fcb0ef1e83a26a98bcb1f7b3 Mon Sep 17 00:00:00 2001 From: Aurelien Lourot Date: Tue, 2 Nov 2021 14:54:04 +0100 Subject: [PATCH] Support OVN charms in automated OpenStack upgrade (#655) * Support OVN charms in automated OpenStack upgrade * Add ovn-dedicated-chassis to the list of control plane principal charms Change-Id: I857513f130091e218a60eaf54eaf63527c00f5e5 --- zaza/openstack/utilities/upgrade_utils.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zaza/openstack/utilities/upgrade_utils.py b/zaza/openstack/utilities/upgrade_utils.py index 4f00592..ecc0b8b 100644 --- a/zaza/openstack/utilities/upgrade_utils.py +++ b/zaza/openstack/utilities/upgrade_utils.py @@ -41,8 +41,9 @@ SERVICE_GROUPS = ( 'aodh', 'barbican', 'ceilometer', 'ceph-fs', 'ceph-radosgw', 'cinder', 'designate', 'designate-bind', 'glance', 'gnocchi', 'heat', 'manila', - 'manila-generic', 'neutron-api', 'neutron-gateway', 'placement', - 'nova-cloud-controller', 'openstack-dashboard']), + 'manila-generic', 'neutron-api', 'neutron-gateway', 'ovn-central', + 'ovn-dedicated-chassis', 'placement', 'nova-cloud-controller', + 'openstack-dashboard']), ('Data Plane', [ 'nova-compute', 'ceph-osd', 'swift-proxy', 'swift-storage']))