diff options
author | Justin chi <chigang@huawei.com> | 2016-12-14 07:28:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-14 07:28:39 +0000 |
commit | 8a4b5bd61fc39c259952871c4447297f3184a0ba (patch) | |
tree | 93e53a021e67e7557d7a87785d90574189cf1f4d /deploy/adapters/ansible/roles/ceph-osd/tasks | |
parent | b4088d7d26058f5df71c612a3075307263df1503 (diff) | |
parent | 9fa28e023cb149256702e86628da72ea3372c250 (diff) |
Merge "Support compute node expansion with ceph-osd"
Diffstat (limited to 'deploy/adapters/ansible/roles/ceph-osd/tasks')
-rw-r--r-- | deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml | 5 |
1 files changed, 5 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 index e7e4a242..ff99d68a 100644 --- a/deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml +++ b/deploy/adapters/ansible/roles/ceph-osd/tasks/install_osd.yml @@ -11,6 +11,11 @@ - name: create osd lv and mount it on /var/local/osd script: create_osd.sh +- name: fetch osd keyring from ceph_adm + fetch: src="/var/lib/ceph/bootstrap-osd/ceph.keyring" dest="/tmp/ceph.osd.keyring" flat=yes + delegate_to: "{{ public_vip.ip }}" + when: compute_expansion + - name: copy osd keyring copy: src="/tmp/ceph.osd.keyring" dest="/var/lib/ceph/bootstrap-osd/ceph.keyring" |