From fc998a9770544660109ab3a1c6f90f4e9db89594 Mon Sep 17 00:00:00 2001 From: r Date: Wed, 4 Aug 2021 01:41:11 +0300 Subject: [PATCH] disable osp13 docker api common container checks This functionality is not getting real names in docker api Change-Id: I1b0a1fc26c48d519ea7c07d81a2c71b99f71ec92 --- tobiko/tripleo/containers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tobiko/tripleo/containers.py b/tobiko/tripleo/containers.py index 8b298ddc6..861daade4 100644 --- a/tobiko/tripleo/containers.py +++ b/tobiko/tripleo/containers.py @@ -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)