From 2616357bbf1d5cfc1f7e3923e12b8adfc5627fc6 Mon Sep 17 00:00:00 2001 From: grakiss Date: Wed, 13 Jan 2016 14:59:11 +0800 Subject: 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 --- .../ansible/roles/ceph-mon/tasks/install_mon.yml | 21 +++++++++++++++++++++ .../adapters/ansible/roles/ceph-mon/tasks/main.yml | 5 +++++ 2 files changed, 26 insertions(+) create mode 100644 deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml create mode 100644 deploy/adapters/ansible/roles/ceph-mon/tasks/main.yml (limited to 'deploy/adapters/ansible/roles/ceph-mon/tasks') 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 diff --git a/deploy/adapters/ansible/roles/ceph-mon/tasks/main.yml b/deploy/adapters/ansible/roles/ceph-mon/tasks/main.yml new file mode 100644 index 00000000..666cfe6a --- /dev/null +++ b/deploy/adapters/ansible/roles/ceph-mon/tasks/main.yml @@ -0,0 +1,5 @@ +- include: install_mon.yml + when: inventory_hostname in groups["ceph_mon"] + tags: + - ceph_mon + - ceph_deploy -- cgit 1.2.3-korg