diff options
author | graiss <grakiss.wanglei@huawei.com> | 2015-11-02 15:22:14 +0800 |
---|---|---|
committer | graiss <grakiss.wanglei@huawei.com> | 2015-11-03 17:59:07 +0800 |
commit | 671d2b541f54dc7f498e3ebd3caa128c234009ea (patch) | |
tree | 6f3ee88b351b06be30638606cf14b1356ec432ec | |
parent | 9e28b43af14bdaa4693b3d05a043ff6cdb797fbf (diff) |
deploy ceph on compute nodes
JIRA:COMPASS-124
- deploy ceph on compute nodes
Change-Id: I27bf8eb96309ada0519c951906eb484d5c72ab2e
Signed-off-by: graiss <grakiss.wanglei@huawei.com>
-rw-r--r-- | deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml | 8 | ||||
-rw-r--r-- | deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml index 06c28f24..27543602 100644 --- a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml +++ b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_Debian.yml @@ -22,21 +22,21 @@ - name: copy create_osd.sh to other nodes shell: scp -o StrictHostKeyChecking=no ~/create_osd.sh {{ item }}:~/ with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd - name: create osd shell: ssh -o StrictHostKeyChecking=no -t {{ item }} "~/create_osd.sh" with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd - name: prepare create osd shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy osd prepare {{ item }}:/var/local/osd with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd @@ -44,7 +44,7 @@ - name: activate osd shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy osd activate {{ item }}:/var/local/osd && ceph-deploy osd activate {{ item }}:/var/local/osd with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd - activate_osd diff --git a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml index 6ce01b86..04ab1b5b 100644 --- a/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml +++ b/deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_install_RedHat.yml @@ -22,21 +22,21 @@ - name: copy create_osd.sh to other nodes shell: scp -o StrictHostKeyChecking=no ~/create_osd.sh {{ item }}:~/ with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd - name: create osd shell: ssh -o StrictHostKeyChecking=no -t {{ item }} "~/create_osd.sh" with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd - name: prepare create osd shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy --repo-url http://10.1.0.12/cblr/repo_mirror/centos7-juno-ppa --gpg-url http://10.1.0.12/cblr/repo_mirror/centos7-juno-ppa/ceph_key_release.asc osd prepare {{ item }}:/var/local/osd with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd @@ -44,7 +44,7 @@ - name: activate osd shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy --repo-url http://10.1.0.12/cblr/repo_mirror/centos7-juno-ppa --gpg-url http://10.1.0.12/cblr/repo_mirror/centos7-juno-ppa/ceph_key_release.asc osd activate {{ item }}:/var/local/osd with_items: - - "{{ groups['controller'] }}" + - "{{ groups['compute'] }}" tags: - create_osd - activate_osd |