--- - name: install dependencies apt: name: "{{ item }}" state: present update_cache: yes cache_valid_time: 3600 with_items: "{{ debian_package_dependencies }}" - name: configure ceph apt repository include: debian_ceph_repository.yml when: ceph_origin == 'upstream' - name: update apt cache apt: update_cache: yes - name: install ceph apt: name: "ceph" update_cache: no state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" default_release: "{{ ceph_stable_release_uca | default(ansible_distribution_release) }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}" - name: install ceph-test apt: pkg: ceph-test state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" default_release: "{{ ceph_stable_release_uca | default(ansible_distribution_release) }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}" when: ceph_test - name: install rados gateway apt: pkg: radosgw state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" update_cache: yes when: rgw_group_name in group_names - name: install ceph mds apt: pkg: ceph-mds state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" default_release: "{{ ceph_stable_release_uca | default(ansible_distribution_release) }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}" when: mds_group_name in group_names - name: install jemalloc apt: pkg: libjemalloc1 state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" update_cache: yes when: nfs_group_name in group_names - name: install NFS gateway apt: pkg: nfs-ganesha-fsal state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" update_cache: yes when: nfs_group_name in group_names - name: install ceph mgr apt: pkg: ceph-mgr state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" default_release: "{{ ceph_stable_release_uca | default(ansible_distribution_release) }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}" when: mgr_group_name in group_names