mirror of https://github.com/ceph/ceph-ansible.git
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
---
|
|
- name: Install dependencies
|
|
yum: >
|
|
name={{ item }}
|
|
state=present
|
|
with_items:
|
|
- python-pycurl
|
|
- ntp
|
|
- hdparm
|
|
- yum-plugin-priorities.noarch
|
|
- epel-release
|
|
|
|
- name: Install the Ceph stable repository key
|
|
rpm_key: >
|
|
key={{ ceph_stable_key }}
|
|
state=present
|
|
when: ceph_stable
|
|
|
|
- name: Install the Ceph development repository key
|
|
rpm_key: >
|
|
key={{ ceph_dev_key }}
|
|
state=present
|
|
when: ceph_dev
|
|
|
|
- name: Install Inktank Ceph Enterprise repository key
|
|
rpm_key: >
|
|
key={{ ceph_stable_ice_temp_path }}/release.asc
|
|
state=present
|
|
when: ceph_stable_ice
|
|
|
|
- name: Add Ceph stable repository
|
|
command: >
|
|
rpm -U http://ceph.com/rpm-{{ ceph_stable_release }}/{{ ceph_stable_redhat_distro }}/noarch/ceph-release-1-0.{{ ceph_stable_redhat_distro|replace('rhel', 'el') }}.noarch.rpm
|
|
creates=/etc/yum.repos.d/ceph.repo
|
|
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
|
|
|
|
- name: Add Inktank Ceph Enterprise repository
|
|
template: >
|
|
src=redhat_ice_repo.j2
|
|
dest=/etc/yum.repos.d/ice.repo
|
|
owner=root
|
|
group=root
|
|
mode=0644
|
|
when: ceph_stable_ice
|
|
|
|
- name: Install Ceph
|
|
yum: >
|
|
name=ceph
|
|
state=latest
|
|
|
|
- name: Install Inktank Ceph Enterprise RBD Kernel modules
|
|
yum: >
|
|
name={{ item }}
|
|
with_items:
|
|
- "{{ ceph_stable_ice_temp_path }}/kmod-libceph-{{ ceph_stable_ice_kmod }}.rpm"
|
|
- "{{ ceph_stable_ice_temp_path }}/kmod-rbd-{{ ceph_stable_ice_kmod }}.rpm"
|
|
when: ceph_stable_ice
|