diff options
author | Justin chi <chigang@huawei.com> | 2016-01-16 02:27:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-01-16 02:27:24 +0000 |
commit | 7a1ca84a19fd1e5b8178ac3c471a30f71e845596 (patch) | |
tree | b352bae1525321ee393fd1ab4cff532cd2539237 /deploy/adapters/ansible/roles/ceph-mon/tasks | |
parent | 6d0c31acb8e9702824f0697eb9916886b0324797 (diff) | |
parent | 2616357bbf1d5cfc1f7e3923e12b8adfc5627fc6 (diff) |
Merge "deploy CEPH nodes parallelly"
Diffstat (limited to 'deploy/adapters/ansible/roles/ceph-mon/tasks')
-rw-r--r-- | deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml | 21 | ||||
-rw-r--r-- | deploy/adapters/ansible/roles/ceph-mon/tasks/main.yml | 5 |
2 files changed, 26 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 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 |