Execution
Date 15 Dec 2025 09:55:36 +0000
Duration 00:21:13.46
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.12.3
Summary
15 Hosts
924 Tasks
1203 Results
46 Plays
212 Files
0 Records

File: /etc/ansible/roles/ceph-ansible/roles/ceph-common/vars/main.yml

---
# ceph-common is always installed, if a package isn't to be installed we replace
# it with 'ceph-common' and run the install with the | unique filter.
debian_ceph_pkgs:
  - "ceph"
  - "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') }}"
  - "{{ (rbdmirror_group_name in group_names) | ternary('ceph-base', 'ceph-common') }}"

redhat_ceph_pkgs:
  - "{{ (ceph_test | bool) | ternary('ceph-test', 'ceph-common') }}"
  - "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') }}"
  - "{{ (rbdmirror_group_name in group_names) | ternary('ceph-base', 'ceph-common') }}"

suse_ceph_pkgs:
  - "{{ (ceph_test | bool) | ternary('ceph-test', 'ceph-common') }}"
  - "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') }}"
  - "{{ (rbdmirror_group_name in group_names) | ternary('ceph-base', 'ceph-common') }}"