diff options
author | heluwei <heluwei@huawei.com> | 2017-09-22 15:51:29 +0800 |
---|---|---|
committer | heluwei <heluwei@huawei.com> | 2018-01-06 20:48:16 +0800 |
commit | bf51c0e84ddf5d8abc59fefb49e39de5f874eab4 (patch) | |
tree | e4f4a9301b24ad4ab5e94af2307116a1ebec30b6 /src/spdk/ansible/group_vars | |
parent | eb2d77147b52fcaf9267dc6157b63aef7e7afbca (diff) |
Add script files of test and spdk-ansible for SPDK
The runtest.py file and the spdk-ansible are submitted. The runtest.py
file is used to execute the scripts of test to validate whether the
SPDK is available. The spdk-ansible is used to install SPDK by the
ansible tool.
Change-Id: I9eca7fb5cfcd2dcf718a0ef99d0ced5f962fd92a
Signed-off-by: heluwei <heluwei@huawei.com>
Diffstat (limited to 'src/spdk/ansible/group_vars')
-rw-r--r-- | src/spdk/ansible/group_vars/common.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/spdk/ansible/group_vars/common.yml b/src/spdk/ansible/group_vars/common.yml new file mode 100644 index 0000000..bf72caf --- /dev/null +++ b/src/spdk/ansible/group_vars/common.yml @@ -0,0 +1,21 @@ +########### +# GENERAL # +########### + + +remote_url: https://github.com/spdk/spdk.git + +user_dir: /home/wewe + +ceph_dir: /home/wewe/ceph + +# when SPDK is installed independently, set enabled_install: spdk_alone +# if not, set enabled_install: ceph_spdk +enabled_install: spdk_alone + +# when enabled_install == "spdk_alone",set spdk_dir: /home/<your_user_name>/spdk. +# when enabled_install == "ceph_spdk",set spdk_dir: /home/<your_uesr_name>/ceph/src/spdk +spdk_dir: /home/wewe/spdk + +#system_version include: Ubuntu, Debian, entos, Fedora, FreeBSD +system_version: Ubuntu |