From: Guillaume Abrioux Date: Thu, 16 Sep 2021 12:02:17 +0000 (+0200) Subject: common: install ceph-volume package X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c49d6804bd32db29dfedf2ba3dd748633b0f56d9;p=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 --- diff --git a/roles/ceph-common/vars/main.yml b/roles/ceph-common/vars/main.yml index d4aead75a..1f51b204a 100644 --- a/roles/ceph-common/vars/main.yml +++ b/roles/ceph-common/vars/main.yml @@ -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') }}"