a6e28f9562
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
21 lines
428 B
YAML
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
|