diff options
author | zhongjun <zhong.jun@zte.com.cn> | 2017-09-08 17:27:26 +0800 |
---|---|---|
committer | zhongjun <zhong.jun@zte.com.cn> | 2017-09-11 17:15:03 +0800 |
commit | 81f5a26699ced0d7f254d05705e8c028471e44d1 (patch) | |
tree | 0a3162ab21c6c58e9543de5eefaab7cbfaa3ff41 /tests/data/daisy_conf | |
parent | 923bd1535dd590754c33a6a8e2a664fd07eb4227 (diff) |
Add the pytest file test_deploy.py
1.add the pytest file test_deploy.py
2.fix the tmpfile clearup issue.
Change-Id: I3a7e0f9199f1bf518b332fd3e9884c8f084575ae
Signed-off-by: zhongjun <zhong.jun@zte.com.cn>
Diffstat (limited to 'tests/data/daisy_conf')
-rw-r--r-- | tests/data/daisy_conf/daisy.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/data/daisy_conf/daisy.conf b/tests/data/daisy_conf/daisy.conf new file mode 100644 index 00000000..22e71d59 --- /dev/null +++ b/tests/data/daisy_conf/daisy.conf @@ -0,0 +1,38 @@ +[DEFAULT] +#The mangement ip of daisy +#When Daisy will be installed in the virtual machine, this option is required. +daisy_management_ip=10.20.11.2 + +[BACKEND] +#Default backend types of daisy, including tecs, zenic, proton, kolla. +#If you want to create a cluster with more than one backend, +#all backend names should be provided for this configuration item, +#such as, default_backend_types=tecs,zenic,proton,kolla. +default_backend_types=kolla + +[OS] +#Default os install types of daisy +os_install_type=pxe + +[PXE] +#Set to 'yes' if you want to build a PXE server, otherwise to 'no'. +build_pxe=no + +#the nic name, to build a PXE server on this nic. +eth_name=ens3 + +#The ip value of PXE server +ip_address=99.99.1.5 + +#the net mask of PXE server +net_mask=255.255.255.0 + +#The start value of PXE client ip range +client_ip_begin=99.99.1.50 + +#The end value of PXE client ip range +client_ip_end=99.99.1.150 + +[multicast] +#enabled multicast or not. +daisy_conf_mcast_enabled=False |