Execution
Date 08 Dec 2025 13:50:33 +0000
Duration 00:06:27.80
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.12.11
Summary
7 Hosts
589 Tasks
576 Results
37 Plays
222 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') }}"