aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.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-mon/tasks/install_mon.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-mon/tasks/install_mon.yml')
-rw-r--r--deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml b/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml
new file mode 100644
index 00000000..e2fc8ebb
--- /dev/null
+++ b/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml
@@ -0,0 +1,21 @@
+
+- name: Create a default data directory
+ file: path="/var/lib/ceph/mon/ceph-{{ inventory_hostname }}" state="directory"
+
+- name: Populate the monitor daemon
+ shell: "ceph-mon --mkfs -i {{ inventory_hostname }} --monmap /tmp/monmap --keyring /tmp/ceph.mon.keyring"
+
+- name: Touch the done file
+ file: path="/var/lib/ceph/mon/ceph-{{ inventory_hostname }}/done" state="touch"
+
+- name: start mon daemon
+ shell: start ceph-mon id={{ inventory_hostname }}
+
+- name: auto start ceph-mon
+ file: path="/var/lib/ceph/mon/ceph-{{ inventory_hostname }}/upstart" state="touch"
+
+- name: sleep for creating osd keyring
+ shell: sleep 10
+
+- name: fetch osd keyring
+ fetch: src="/var/lib/ceph/bootstrap-osd/ceph.keyring" dest="/tmp/ceph.osd.keyring" flat=yes