2014-09-05 03:14:11 +08:00
|
|
|
---
|
|
|
|
- name: Install dependencies
|
2014-11-06 00:57:28 +08:00
|
|
|
yum: >
|
|
|
|
name={{ item }}
|
2014-09-05 03:14:11 +08:00
|
|
|
state=present
|
|
|
|
with_items:
|
|
|
|
- python-pycurl
|
|
|
|
- ntp
|
|
|
|
- hdparm
|
|
|
|
|
|
|
|
- name: Install the Ceph stable repository key
|
|
|
|
rpm_key: >
|
2014-11-11 23:10:32 +08:00
|
|
|
key={{ ceph_stable_key }}
|
2014-09-05 03:14:11 +08:00
|
|
|
state=present
|
|
|
|
when: ceph_stable
|
|
|
|
|
2014-11-14 22:05:56 +08:00
|
|
|
- name: Install the Ceph development repository key
|
2014-09-05 03:14:11 +08:00
|
|
|
rpm_key: >
|
2014-11-11 23:10:32 +08:00
|
|
|
key={{ ceph_dev_key }}
|
2014-09-05 03:14:11 +08:00
|
|
|
state=present
|
|
|
|
when: ceph_dev
|
|
|
|
|
2014-12-18 01:01:44 +08:00
|
|
|
- name: Install Inktank Ceph Enterprise repository key
|
|
|
|
rpm_key: >
|
2014-12-18 19:20:17 +08:00
|
|
|
key=file://{{ ceph_stable_ice_temp_path }}/release.asc
|
2014-12-18 01:01:44 +08:00
|
|
|
state=present
|
|
|
|
when: ceph_stable_ice
|
|
|
|
|
2014-09-05 03:14:11 +08:00
|
|
|
- name: Add Ceph stable repository
|
2014-11-11 17:50:03 +08:00
|
|
|
command: "rpm -U http://ceph.com/rpm-{{ ceph_stable_release }}/{{ ceph_stable_redhat_distro }}/noarch/ceph-release-1-0.el6.noarch.rpm creates=/etc/yum.repos.d/ceph.repo"
|
2014-09-05 03:14:11 +08:00
|
|
|
when: ceph_stable
|
|
|
|
|
|
|
|
- name: Add Ceph development repository
|
|
|
|
command: "rpm -U http://gitbuilder.ceph.com/ceph-rpm-{{ ceph_dev_redhat_distro }}-x86_64-basic/ref/{{ ceph_dev_branch }}/noarch/ceph-release-1-0.{{ ceph_stable_redhat_distro }}.noarch.rpm creates=/etc/yum.repos.d/ceph.repo"
|
|
|
|
when: ceph_dev
|
|
|
|
|
2014-12-18 01:01:44 +08:00
|
|
|
- name: Add Inktank Ceph Enterprise repository
|
2014-12-16 20:46:32 +08:00
|
|
|
template: >
|
2014-12-18 01:01:44 +08:00
|
|
|
src=redhat_ice_repo.j2
|
2014-12-16 20:46:32 +08:00
|
|
|
dest=/etc/yum.repos.d/ice.repo
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=0644
|
|
|
|
when: ceph_stable_ice
|
|
|
|
|
2014-09-05 03:14:11 +08:00
|
|
|
- name: Install Ceph
|
2014-11-06 00:57:28 +08:00
|
|
|
yum: >
|
|
|
|
name=ceph
|
2014-09-05 03:14:11 +08:00
|
|
|
state=latest
|
2014-12-18 19:20:17 +08:00
|
|
|
|
|
|
|
- name: Install Inktank Ceph Enterprise RBD Kernel modules
|
|
|
|
yum: >
|
|
|
|
name={{ item }}
|
|
|
|
with_items:
|
2014-12-25 00:07:50 +08:00
|
|
|
- "{{ ceph_stable_ice_temp_path }}/kmod-libceph-{{ ceph_stable_ice_kmod }}.rpm"
|
|
|
|
- "{{ ceph_stable_ice_temp_path }}/kmod-rbd-{{ ceph_stable_ice_kmod }}.rpm"
|
2014-12-18 19:20:17 +08:00
|
|
|
when: ceph_stable_ice
|