From f5fd3b50b7a1c5b836949c51734ffdc91f233c81 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Sat, 20 Oct 2018 05:18:34 +0200 Subject: [PATCH] teuthology-openstack: add banner after cluster creation When creating a teuthology openstack cluster and not requesting any suite suite run the teuthology-openstack quits silently not giving information where the cluster is created and how its services can be reached. This fix addresses the issue above. Signed-off-by: Kyr Shatskyy --- teuthology/openstack/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/openstack/__init__.py b/teuthology/openstack/__init__.py index f8876646c4..908991c81e 100644 --- a/teuthology/openstack/__init__.py +++ b/teuthology/openstack/__init__.py @@ -934,6 +934,7 @@ ssh access : ssh {identity}{username}@{ip} # logs in /usr/share/nginx/ if self.get_provider() != 'rackspace': self.create_security_group() self.create_cluster() + self.reminders() def setup_logs(self): """ -- 2.39.5