diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-02-20 15:11:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-20 15:11:49 +0000 |
commit | 59d85d2ae17d7ce6aabf8500c7cf9933df4e9ad3 (patch) | |
tree | e939426e960f30d270b644e20791d0060a7d4984 | |
parent | d8713999a5dda9e87442de7290d1c460b9021cce (diff) | |
parent | 148ed7ee1cb6ce7fd9cc62efa2cc6ece7ffc35a7 (diff) |
Merge "Deprecate options not sourceable to environment via Python. JIRA: QTIP-205"
-rw-r--r-- | qtip/cli/commands/cmd_plan.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/qtip/cli/commands/cmd_plan.py b/qtip/cli/commands/cmd_plan.py index 0c0a3c12..c1dd7cf6 100644 --- a/qtip/cli/commands/cmd_plan.py +++ b/qtip/cli/commands/cmd_plan.py @@ -24,11 +24,8 @@ def cli(ctx): @cli.command('init', help='Initialize Environment') -@click.option('--inst_type', prompt='Installer Type') -@click.option('--inst_ip', prompt='Installer IP') -@click.option('--ext_net', prompt='Openstack External Network') @pass_context -def init(ctx, inst_type, inst_ip, ext_net): +def init(ctx): pass |