mirror of https://github.com/ceph/ceph-ansible.git
common: install ceph-volume package
After pacific release, ceph-volume has its own package. ceph-ansible has to explicitly install it on osd nodes. Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/6893/head
parent
1c50dc29cf
commit
c49d6804bd
|
@ -6,6 +6,7 @@ debian_ceph_pkgs:
|
|||
- "ceph-common"
|
||||
- "{{ ((ceph_repository == 'rhcs') and (mon_group_name in group_names)) | ternary('ceph-mon', 'ceph-common') }}"
|
||||
- "{{ ((ceph_repository == 'rhcs') and (osd_group_name in group_names)) | ternary('ceph-osd', 'ceph-common') }}"
|
||||
- "{{ (osd_group_name in group_names) | ternary('ceph-volume', 'ceph-common') }}"
|
||||
- "{{ (ceph_test | bool) | ternary('ceph-test', 'ceph-common') }}"
|
||||
- "{{ (rgw_group_name in group_names) | ternary('radosgw', 'ceph-common') }}"
|
||||
- "{{ ((ceph_repository == 'rhcs') and (client_group_name in group_names)) | ternary('ceph-fuse', 'ceph-common') }}"
|
||||
|
@ -15,6 +16,7 @@ redhat_ceph_pkgs:
|
|||
- "ceph-common"
|
||||
- "{{ (mon_group_name in group_names) | ternary('ceph-mon', 'ceph-common') }}"
|
||||
- "{{ (osd_group_name in group_names) | ternary('ceph-osd', 'ceph-common') }}"
|
||||
- "{{ (osd_group_name in group_names) | ternary('ceph-volume', 'ceph-common') }}"
|
||||
- "{{ (client_group_name in group_names) | ternary('ceph-fuse', 'ceph-common') }}"
|
||||
- "{{ (client_group_name in group_names) | ternary('ceph-base', 'ceph-common') }}"
|
||||
- "{{ (rgw_group_name in group_names) | ternary('ceph-radosgw', 'ceph-common') }}"
|
||||
|
@ -24,6 +26,7 @@ suse_ceph_pkgs:
|
|||
- "ceph-common"
|
||||
- "{{ (mon_group_name in group_names) | ternary('ceph-mon', 'ceph-common') }}"
|
||||
- "{{ (osd_group_name in group_names) | ternary('ceph-osd', 'ceph-common') }}"
|
||||
- "{{ (osd_group_name in group_names) | ternary('ceph-volume', 'ceph-common') }}"
|
||||
- "{{ (client_group_name in group_names) | ternary('ceph-fuse', 'ceph-common') }}"
|
||||
- "{{ (client_group_name in group_names) | ternary('ceph-base', 'ceph-common') }}"
|
||||
- "{{ (rgw_group_name in group_names) | ternary('ceph-radosgw', 'ceph-common') }}"
|
||||
|
|
Loading…
Reference in New Issue