2014-09-05 03:14:11 +08:00
|
|
|
---
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: install dependencies
|
2014-11-06 00:57:28 +08:00
|
|
|
apt: >
|
|
|
|
pkg={{ item }}
|
|
|
|
state=present
|
|
|
|
update_cache=yes
|
2014-09-05 03:14:11 +08:00
|
|
|
cache_valid_time=3600
|
|
|
|
with_items:
|
|
|
|
- python-pycurl
|
|
|
|
- ntp
|
|
|
|
- hdparm
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: install the Ceph repository stable key
|
2014-11-06 00:57:28 +08:00
|
|
|
apt_key: >
|
2014-09-05 03:14:11 +08:00
|
|
|
data="{{ lookup('file', 'cephstable.asc') }}"
|
|
|
|
state=present
|
|
|
|
when: ceph_stable
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: install the Ceph development repository key
|
2014-11-06 00:57:28 +08:00
|
|
|
apt_key: >
|
2014-09-05 03:14:11 +08:00
|
|
|
data="{{ lookup('file', 'cephdev.asc') }}"
|
|
|
|
state=present
|
|
|
|
when: ceph_dev
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: install Intank Ceph Enterprise repository key
|
2014-12-18 01:01:44 +08:00
|
|
|
apt_key: >
|
|
|
|
data="{{ lookup('file', 'cephstableice.asc') }}"
|
|
|
|
state=present
|
|
|
|
when: ceph_stable_ice
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: add Ceph stable repository
|
2014-11-06 00:57:28 +08:00
|
|
|
apt_repository: >
|
2014-09-05 03:14:11 +08:00
|
|
|
repo="deb http://ceph.com/debian-{{ ceph_stable_release }}/ {{ ansible_lsb.codename }} main"
|
|
|
|
state=present
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2014-09-05 03:14:11 +08:00
|
|
|
when: ceph_stable
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: add Ceph development repository
|
2014-09-05 03:14:11 +08:00
|
|
|
apt_repository: >
|
|
|
|
repo="deb http://gitbuilder.ceph.com/ceph-deb-{{ ansible_lsb.codename }}-x86_64-basic/ref/{{ ceph_dev_branch }} {{ ansible_lsb.codename }} main"
|
|
|
|
state=present
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2014-09-05 03:14:11 +08:00
|
|
|
when: ceph_dev
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: add Inktank Ceph Enterprise repository
|
2014-12-18 01:01:44 +08:00
|
|
|
apt_repository: >
|
|
|
|
repo="deb file://{{ ceph_stable_ice_temp_path }} {{ ansible_lsb.codename }} main"
|
|
|
|
state=present
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2014-12-18 01:01:44 +08:00
|
|
|
when: ceph_stable_ice
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: install Ceph
|
2014-09-05 03:14:11 +08:00
|
|
|
apt: >
|
|
|
|
pkg={{ item }}
|
|
|
|
state=latest
|
|
|
|
with_items:
|
|
|
|
- ceph
|
|
|
|
- ceph-common #|
|
|
|
|
- ceph-fs-common #|--> yes, they are already all dependencies from 'ceph'
|
|
|
|
- ceph-fuse #|--> however while proceding to rolling upgrades and the 'ceph' package upgrade
|
|
|
|
- ceph-mds #|--> they don't get update so we need to force them
|
|
|
|
- libcephfs1 #|
|
2015-06-09 22:32:17 +08:00
|
|
|
|
|
|
|
- name: configure rbd clients directories
|
|
|
|
file: >
|
|
|
|
path={{ item }}
|
|
|
|
state=directory
|
|
|
|
owner=libvirt-qemu
|
|
|
|
group=kvm
|
|
|
|
mode=0755
|
|
|
|
with_items:
|
|
|
|
- rbd_client_log_path
|
|
|
|
- rbd_client_admin_socket_path
|
|
|
|
when: rbd_client_directories
|