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:
parent
816b2350a1
commit
c5f782b670
13
.zuul.yaml
13
.zuul.yaml
@ -8,13 +8,6 @@
|
|||||||
jobs:
|
jobs:
|
||||||
- vitrage-tempest-plugin-api
|
- vitrage-tempest-plugin-api
|
||||||
- vitrage-tempest-plugin-datasources
|
- 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:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
- vitrage-tempest-plugin-api
|
- vitrage-tempest-plugin-api
|
||||||
@ -81,10 +74,13 @@
|
|||||||
tempest_plugins:
|
tempest_plugins:
|
||||||
- vitrage-tempest-plugin
|
- vitrage-tempest-plugin
|
||||||
devstack_localrc:
|
devstack_localrc:
|
||||||
|
GLOBAL_VENV: False
|
||||||
|
VITRAGE_COORDINATION_URL: memcached://127.0.0.1:11211
|
||||||
VITRAGE_USE_STATIC: 1
|
VITRAGE_USE_STATIC: 1
|
||||||
VITRAGE_USE_DOCTOR: 1
|
VITRAGE_USE_DOCTOR: 1
|
||||||
VITRAGE_USE_PROMETHEUS: 1
|
VITRAGE_USE_PROMETHEUS: 1
|
||||||
devstack_services:
|
devstack_services:
|
||||||
|
etcd3: false
|
||||||
s-account: false
|
s-account: false
|
||||||
s-container: false
|
s-container: false
|
||||||
s-object: false
|
s-object: false
|
||||||
@ -264,6 +260,3 @@
|
|||||||
parent: vitrage-tempest-plugin-datasources
|
parent: vitrage-tempest-plugin-datasources
|
||||||
nodeset: openstack-single-node-focal
|
nodeset: openstack-single-node-focal
|
||||||
override-checkout: stable/xena
|
override-checkout: stable/xena
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ class ServiceTest(BaseVitrageTempest):
|
|||||||
self.check_different_process_ids_for(services)
|
self.check_different_process_ids_for(services)
|
||||||
|
|
||||||
def check_all_equal(self, services, expected_svc_names):
|
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)
|
self.assert_set_equal(expected_svc_names, names)
|
||||||
|
|
||||||
def check_all_hosted(self, services, hostname):
|
def check_all_hosted(self, services, hostname):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user