From f5f461b8e3fadfc3a87b8419a72312497bca2d20 Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov Date: Wed, 7 Oct 2015 13:23:45 +0300 Subject: [PATCH] Adding command to show tempest.conf Now we can see tempest.conf by executing the following command: $ rally verify showconfig The output will be something like this: Tempest config file: [DEFAULT] debug = True log_file = tempest.log use_stderr = False [boto] http_socket_timeout = 30 ec2_url = http://172.16.49.231:8773/services/Cloud s3_url = http://172.16.49.231:8080 ... Change-Id: I207d8314631e70ded2d8def13fe72c2a1c89af7d --- etc/rally.bash_completion | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/rally.bash_completion b/etc/rally.bash_completion index e807cd15..636bca60 100644 --- a/etc/rally.bash_completion +++ b/etc/rally.bash_completion @@ -55,6 +55,7 @@ _rally() OPTS["verify_reinstall"]="--deployment --tempest-config --source" OPTS["verify_results"]="--uuid --html --json --output-file" OPTS["verify_show"]="--uuid --sort-by --detailed" + OPTS["verify_showconfig"]="--deployment" OPTS["verify_start"]="--deployment --set --regex --tempest-config --no-use --system-wide-install" OPTS["verify_uninstall"]="--deployment" OPTS["verify_use"]="--verification"