diff options
author | Zhijiang Hu <hu.zhijiang@zte.com.cn> | 2017-04-06 09:41:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-04-06 09:41:56 +0000 |
commit | 8f52576ce2063e1e742e1e6fafd66f6979bb2d10 (patch) | |
tree | 26222260080596de6e543bdc4f611efc434fc92a /deploy/tempest.py | |
parent | dcb206d2d954f95ace1c93febf8ce9d38270facd (diff) | |
parent | db04b4a1db1c70fe76efca3361dfbb3d43abede4 (diff) |
Merge "delete redundant parameters in cluster_meta"
Diffstat (limited to 'deploy/tempest.py')
-rw-r--r-- | deploy/tempest.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/deploy/tempest.py b/deploy/tempest.py index efa3673c..3bf0ccc7 100644 --- a/deploy/tempest.py +++ b/deploy/tempest.py @@ -125,9 +125,7 @@ def install_os_for_vm_step1(cluster_id): def install_os_for_bm_oneshot(cluster_id): - cluster_meta = {'cluster_id': cluster_id, - 'pxe_only': "false", - 'skip_pxe_ipmi': "false"} + cluster_meta = {'cluster_id': cluster_id} client.install.install(**cluster_meta) |