The first 14.x tag has been cut so this needs to be added so that
version detection will still work on the master branch of ceph.
Fixes: https://github.com/ceph/ceph-ansible/issues/2671
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
# kraken: 11
# luminous: 12
# mimic: 13
+# nautilus: 14
# Directory to fetch cluster fsid, keys etc...
#fetch_directory: fetch/
# kraken: 11
# luminous: 12
# mimic: 13
+# nautilus: 14
# Directory to fetch cluster fsid, keys etc...
fetch_directory: ~/ceph-ansible-keys
ceph_release: mimic
when:
- ceph_version.split('.')[0] | version_compare('13', '==')
+
+- name: set_fact ceph_release nautilus
+ set_fact:
+ ceph_release: nautilus
+ when:
+ - ceph_version.split('.')[0] | version_compare('14', '==')
kraken: 11
luminous: 12
mimic: 13
+ nautilus: 14
# Directory to fetch cluster fsid, keys etc...
fetch_directory: fetch/
ceph_release: mimic
when:
- ceph_version.split('.')[0] | version_compare('13', '==')
+
+- name: set_fact ceph_release nautilus
+ set_fact:
+ ceph_release: nautilus
+ when:
+ - ceph_version.split('.')[0] | version_compare('14', '==')