ceph-ansible/roles/ceph-common/tasks/installs/install_on_debian.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

2014-09-05 03:14:11 +08:00
---
- name: install dependencies
apt: >
pkg={{ item }}
state=present
update_cache=yes
2014-09-05 03:14:11 +08:00
cache_valid_time=3600
with_items: debian_package_dependencies
2014-09-05 03:14:11 +08:00
2015-08-31 20:23:20 +08:00
- name: configure ceph apt repository
include: debian_ceph_repository.yml
when: ceph_origin == 'upstream'
- name: install ceph
2014-09-05 03:14:11 +08:00
apt: >
pkg={{ item }}
state=latest
default_release={{ ansible_distribution_release }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}
2014-09-05 03:14:11 +08:00
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 #|
- name: install rados gateway
apt: >
pkg=radosgw
state=latest
update_cache=yes
when:
rgw_group_name in group_names
- 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