Replace etcd with memcached for coordination in tempest jobs

This also removes job for old branches keeping only current master

Depends-On: https://review.opendev.org/c/openstack/vitrage/+/905598
Change-Id: Icdbe494f398420faa36cfcca3e50233b805ad45d
This commit is contained in:
Dmitriy Rabotyagov 2023-11-20 19:55:52 +01:00 committed by Dmitriy Rabotyagov
parent 816b2350a1
commit c5f782b670
2 changed files with 5 additions and 12 deletions

View File

@ -8,13 +8,6 @@
jobs:
- vitrage-tempest-plugin-api
- vitrage-tempest-plugin-datasources
- vitrage-tempest-plugin-datasources-zed
- vitrage-tempest-plugin-api-zed
- vitrage-tempest-plugin-datasources-yoga
- vitrage-tempest-plugin-api-yoga
- vitrage-tempest-plugin-datasources-xena:
voting: false
- vitrage-tempest-plugin-api-xena
gate:
jobs:
- vitrage-tempest-plugin-api
@ -81,10 +74,13 @@
tempest_plugins:
- vitrage-tempest-plugin
devstack_localrc:
GLOBAL_VENV: False
VITRAGE_COORDINATION_URL: memcached://127.0.0.1:11211
VITRAGE_USE_STATIC: 1
VITRAGE_USE_DOCTOR: 1
VITRAGE_USE_PROMETHEUS: 1
devstack_services:
etcd3: false
s-account: false
s-container: false
s-object: false
@ -264,6 +260,3 @@
parent: vitrage-tempest-plugin-datasources
nodeset: openstack-single-node-focal
override-checkout: stable/xena

View File

@ -39,7 +39,7 @@ class ServiceTest(BaseVitrageTempest):
self.check_different_process_ids_for(services)
def check_all_equal(self, services, expected_svc_names):
names = {service['name'].split(' ')[0] for service in services}
names = {service['name'].split('_')[0] for service in services}
self.assert_set_equal(expected_svc_names, names)
def check_all_hosted(self, services, hostname):