X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/0b0a150ab5385a7b76ebcb3dd68cf3989e5b81ca..c8e0a534af2b865014b96540b52a3d7cafca0989:/qa/qa_cluster.py diff --git a/qa/qa_cluster.py b/qa/qa_cluster.py index d2367c0..4d10c8f 100644 --- a/qa/qa_cluster.py +++ b/qa/qa_cluster.py @@ -152,6 +152,7 @@ def TestClusterBurnin(): disk_template = options.get('burnin-disk-template', 'drbd') parallel = options.get('burnin-in-parallel', False) check_inst = options.get('burnin-check-instances', False) + do_rename = options.get('burnin-rename', '') # Get as many instances as we need instances = [] @@ -179,6 +180,8 @@ def TestClusterBurnin(): cmd.append('--parallel') if check_inst: cmd.append('--http-check') + if do_rename: + cmd.append('--rename=%s' % do_rename) cmd += [inst['name'] for inst in instances] AssertEqual(StartSSH(master['primary'], utils.ShellQuoteArgs(cmd)).wait(), 0)