532b81d6ee
Ubuntu Jammy will only support Ceph Quincy. Workaround for now - use Jammy in-distro packages for cephadm. Change-Id: I30f071865b9b0751f1336414a0ae82571a332530
15 lines
333 B
YAML
15 lines
333 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
|