summaryrefslogtreecommitdiffstats
path: root/src/spdk/ansible/README.md
diff options
context:
space:
mode:
authorheluwei <heluwei@huawei.com>2017-09-22 15:51:29 +0800
committerheluwei <heluwei@huawei.com>2018-01-06 20:48:16 +0800
commitbf51c0e84ddf5d8abc59fefb49e39de5f874eab4 (patch)
treee4f4a9301b24ad4ab5e94af2307116a1ebec30b6 /src/spdk/ansible/README.md
parenteb2d77147b52fcaf9267dc6157b63aef7e7afbca (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/README.md')
-rw-r--r--src/spdk/ansible/README.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/spdk/ansible/README.md b/src/spdk/ansible/README.md
new file mode 100644
index 0000000..20299a7
--- /dev/null
+++ b/src/spdk/ansible/README.md
@@ -0,0 +1,36 @@
+# spdk-ansible: deploy spdk
+## Install ssh server
+ sudo apt-get install openssh-server
+
+ if you use root to run spdk-ansible, you should open the file of
+ /etc/ssh/sshd_config and modify:
+ PermitRootLogin yes
+ sudo /etc/init.d/ssh restart
+
+ generate ssh-token:
+ ssh-keygen -t rsa
+ ssh-copy-id -i ~/.ssh/id_rsa.pub <romte_ip(eg: username@hostName or username@hostIp)>
+
+## Install the ansible tool:
+ sudo add-apt-repository ppa:ansible/ansible
+ sudo apt-get update
+ sudo apt-get install ansible
+
+## Configure Inventory, default in /etc/ansible/hosts:
+ [spdk_server]
+ your_host_name or your_host_ip
+
+## Check if the hosts could be reached:
+ ansible all -m ping
+
+## Download spdk-ansible
+ git clone https://github.com/hellowaywewe/spdk-ansible.git
+
+## configure spdk-ansible
+ Configure common.yml according to required vars.
+ Configure site.yml according to required tasks.
+
+## Run ansible playbook: (under spdk-ansible root directory)
+ ansible-playbook site.yml --extra-vars "ansible_sudo_pass=your_user_password"
+ if you use root to run,you can execute directly:
+ ansible-playbook site.yml