From 704d1340fb09b5ffad0282bc143d41e2afebd0bf Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Tue, 16 May 2017 15:13:14 +0800 Subject: Add support for manually installed (not using installer) OPNFV pod Change-Id: I314882dd8a9e491f253f825a8da7ec4c91ed3321 Signed-off-by: Yujun Zhang --- qtip/cli/commands/cmd_project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qtip') 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): -- cgit 1.2.3-korg