summaryrefslogtreecommitdiffstats
path: root/qtip
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-05-16 08:29:20 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-16 08:29:20 +0000
commitb5a115179cc75be6ca853d740dfce393fc8c1fd2 (patch)
tree7f4dda28214d72e49eadd364673e6fa11164623a /qtip
parenteeb3cad4c3bf94b7b5f7da6cde190364bb10fca6 (diff)
parent704d1340fb09b5ffad0282bc143d41e2afebd0bf (diff)
Merge "Add support for manually installed (not using installer) OPNFV pod"
Diffstat (limited to 'qtip')
-rw-r--r--qtip/cli/commands/cmd_project.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtip/cli/commands/cmd_project.py b/qtip/cli/commands/cmd_project.py
index 0bf7d82f..42fd000d 100644
--- a/qtip/cli/commands/cmd_project.py
+++ b/qtip/cli/commands/cmd_project.py
@@ -37,8 +37,8 @@ def cli():
@cli.command(help="Create new testing project")
@click.option('--pod', default='unknown', help='Name of pod under test')
-@click.option('--installer', help='OPNFV installer', required=True)
-@click.option('--master-host', help='Installer hostname', required=True)
+@click.option('--installer', help='OPNFV installer', default='manual')
+@click.option('--master-host', help='Installer hostname', default='dummy-host')
@click.option('--scenario', default='unknown', help='OPNFV scenario')
@click.argument('name')
def create(pod, installer, master_host, scenario, name):