kolla-ansible/roles/cephadm/tasks/pkg_debian.yml
Michal Nasiadka a6e28f9562 CI: cephadm: Fix EL9 (Rocky)
CentOS Storage SIG rpms have a recommended install
section that installs podman - let's stop doing that.

Ceph is also suffering from the enormous open files
ulimit that EL9 defaults to - let's set a default
in docker engine for now.

Change-Id: I41f39f520dfecec307ad3b86e1e0363570198e42
2023-02-27 09:01:41 +00:00

21 lines
428 B
YAML

---
- name: Ensure apt sources list directory exists
file:
path: /etc/apt/sources.list.d
state: directory
recurse: yes
become: True
- name: Enable Ceph apt repository
apt_repository:
repo: "{{ cephadm_ceph_apt_repo }}"
filename: ceph
become: True
when: not cephadm_use_package_from_distribution | bool
- name: Install cephadm
apt:
name: cephadm
install_recommends: False
become: True