disable osp13 docker api common container checks

This functionality is not getting real names in docker api

Change-Id: I1b0a1fc26c48d519ea7c07d81a2c71b99f71ec92
This commit is contained in:
r 2021-08-04 01:41:11 +03:00
parent d2030b22b5
commit fc998a9770
1 changed files with 4 additions and 0 deletions

View File

@ -202,6 +202,10 @@ def assert_containers_running(group, expected_containers, full_name=True):
"""assert that all containers specified in the list are running
on the specified openstack group(controller or compute etc..)"""
if is_docker():
LOG.info('not checking common containers since we are on docker')
return
failures = []
openstack_nodes = topology.list_openstack_nodes(group=group)