Ensure latest Ceph packages during deployment

Change-Id: Ia5bc0802577e2b72a1de078085f5fe7e60f63604
This commit is contained in:
Matthew Heler 2018-10-29 10:10:15 -05:00
parent 5730631ba6
commit 3e7ba37290
1 changed files with 20 additions and 13 deletions

View File

@ -61,22 +61,29 @@
with_items:
- libselinux-python
- when: kubelet.pv_support_ceph
name: installing ceph support packages
include_role:
name: deploy-package
tasks_from: dist
vars:
packages:
deb:
- ceph-common
- rbd-nbd
rpm:
- name: installing ceph support packages
when: kubelet.pv_support_ceph
block:
- name: ubuntu | installing packages
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
apt:
name: "{{item}}"
state: latest
with_items:
- ceph-common
- rbd-nbd
- when: kubelet.pv_support_ceph
name: blacklist kernel RBD driver module
- name: centos | installing packages
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
yum:
name: "{{item}}"
state: latest
with_items:
- ceph-common
- rbd-nbd
- name: blacklist kernel RBD driver module
when: kubelet.pv_support_ceph
copy:
dest: "/etc/modprobe.d/rbd.conf"
content: "install rbd /bin/true"