summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhouya <zhou.ya@zte.com.cn>2017-04-06 10:46:30 +0800
committerzhouya <zhou.ya@zte.com.cn>2017-04-06 10:46:34 +0800
commitdb04b4a1db1c70fe76efca3361dfbb3d43abede4 (patch)
treea2f9589e77321cd4b29710c98ff601263721b1f5
parenteb479eb3ec9ec756ac1f1eb194f9831394f6e27c (diff)
delete redundant parameters in cluster_meta
when we deploy the baremetal,do not have to use pxe_only and skip_pxe_ipmi parameters,or we can't call 'daisy install' command Change-Id: Ief5131c47c16412b8dacec50b5a7858b65baa7a2 Signed-off-by: zhouya <zhou.ya@zte.com.cn>
-rw-r--r--deploy/tempest.py4
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)