mirror of
https://github.com/ceph/ceph
synced 2024-12-25 21:03:31 +00:00
041666b07a
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
32 lines
825 B
Python
32 lines
825 B
Python
import docopt
|
|
|
|
import teuthology.config
|
|
import teuthology.beanstalk
|
|
|
|
doc = """
|
|
usage: teuthology-queue -h
|
|
teuthology-queue [-d] -m MACHINE_TYPE
|
|
teuthology-queue [-r] -m MACHINE_TYPE
|
|
teuthology-queue -m MACHINE_TYPE -D PATTERN
|
|
|
|
List Jobs in queue:
|
|
If -d then jobs with PATTERN in the job name are deleted from the queue.
|
|
|
|
Arguments:
|
|
-m, --machine_type MACHINE_TYPE
|
|
Which machine type queue to work on.
|
|
|
|
optional arguments:
|
|
-h, --help Show this help message and exit
|
|
-D, --delete PATTERN Delete Jobs with PATTERN in their name
|
|
-d, --description Show job descriptions
|
|
-r, --runs Only show run names
|
|
|
|
|
|
""".format(archive_base=teuthology.config.config.archive_base)
|
|
|
|
|
|
def main():
|
|
args = docopt.docopt(doc)
|
|
teuthology.beanstalk.main(args)
|