aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/ceph-mon/tasks/install_mon.yml
diff options
context:
space:
mode:
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