We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2441dcb commit c0fc605Copy full SHA for c0fc605
roles/cephadm/tasks/pkg_debian.yml
@@ -30,7 +30,9 @@
30
apt_repository:
31
repo: "deb [signed-by={{ cephadm_apt_key_path }}] https://download.ceph.com/debian-{{ item }}/ {{ cephadm_apt_repo_dist }} main"
32
state: "{{ 'present' if item == cephadm_ceph_release else 'absent' }}"
33
- when: not cephadm_custom_repos | bool
+# there are not yet official repos for Ubuntu 22.04 so we use canonical repo
34
+# see https://docs.ceph.com/en/latest/cephadm/install/#cephadm-install-distros
35
+ when: not cephadm_custom_repos | bool and item != "quincy"
36
become: true
37
loop: "{{ cephadm_ceph_releases }}"
38
0 commit comments