aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml
diff options
context:
space:
mode:
authorgrakiss <grakiss.wanglei@huawei.com>2016-01-13 14:59:11 +0800
committerJustin chi <chigang@huawei.com>2016-01-30 03:34:26 +0000
commit951cec74b7b8cef5db2f2bda7375653fedaedbf8 (patch)
tree219fdc31014836b059597bd6439dadbe6c6cb59b /deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml
parentffcccb6b50fe7e5954188b44f6666f7ac3dee3da (diff)
deploy CEPH nodes parallelly
JIRA:COMPASS-264 - do not use ceph-deploy - do not need centeral node to deploy ceph Change-Id: I0f9c459060a2fccbad73a323697ec23ea2115410 Signed-off-by: grakiss <grakiss.wanglei@huawei.com> (cherry picked from commit 2616357bbf1d5cfc1f7e3923e12b8adfc5627fc6)
Diffstat (limited to 'deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml')
-rw-r--r--deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml b/deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml
new file mode 100644
index 00000000..bf49c50e
--- /dev/null
+++ b/deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml
@@ -0,0 +1,14 @@
+---
+
+- name: create osd lv and mount it on /var/local/osd
+ script: create_osd.sh
+
+- name: copy osd keyring
+ copy: src="/tmp/ceph.osd.keyring" dest="/var/lib/ceph/bootstrap-osd/ceph.keyring"
+
+- name: prepare osd disk
+ shell: ceph-disk prepare --fs-type xfs /var/local/osd
+
+- name: activate osd node
+ shell: ceph-disk activate /var/local/osd
+