]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
openstack: always pass branch and repo parameters 1285/head
authorgkyratsas <gkyratsas@suse.com>
Wed, 24 Apr 2019 14:37:43 +0000 (16:37 +0200)
committergkyratsas <gkyratsas@suse.com>
Fri, 26 Apr 2019 07:51:42 +0000 (09:51 +0200)
We need to always pass the parameters below in order to make it work using
environment variables:
--ceph
--ceph-repo
--suite-repo
--suite-branch
--teuthology-branch

Signed-off-by: gkyratsas <gkyratsas@suse.com>
Conflicts:
teuthology/openstack/__init__.py

teuthology/openstack/__init__.py

index 1f2d598f7179d747fdd99a7a438ee05e70b44987..1f006dedc9ca0b23683b325f589f4eda7c13163f 100644 (file)
@@ -714,12 +714,20 @@ class TeuthologyOpenStack(OpenStack):
         running the teuthology cluster.
         """
         original_argv = self.argv[:]
-        argv = []
+        argv = ['--ceph', self.args.ceph,
+                '--ceph-repo', self.args.ceph_repo,
+                '--suite-repo', self.args.suite_repo,
+                '--suite-branch', self.args.suite_branch,
+                ]
         while len(original_argv) > 0:
             if original_argv[0] in ('--name',
                                     '--teuthology-branch',
                                     '--teuthology-git-url',
                                     '--test-repo',
+                                    '--suite-repo',
+                                    '--suite-branch',
+                                    '--ceph-repo',
+                                    '--ceph',
                                     '--archive-upload',
                                     '--archive-upload-url',
                                     '--key-name',