]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Extend ansible_version check to allow v2.17.x main
authorDaniel Swarbrick <daniel.swarbrick1@ionos.com>
Fri, 13 Feb 2026 16:07:09 +0000 (17:07 +0100)
committerSeena Fallah <seenafallah@gmail.com>
Fri, 13 Feb 2026 16:09:14 +0000 (17:09 +0100)
Signed-off-by: Daniel Swarbrick <daniel.swarbrick1@ionos.com>
roles/ceph-validate/tasks/check_system.yml

index bd2a231966483ee2a7b945ca5f42eb4e0d2fa992..da6cf1fb0b2418e936bf376955ee440a5ae7aa44 100644 (file)
@@ -6,8 +6,8 @@
 
 - name: Fail on unsupported ansible version
   ansible.builtin.fail:
-    msg: "Ansible version must be either 2.15 or 2.16!"
-  when: ansible_version.minor|int not in [15, 16]
+    msg: "Ansible version must be either 2.15, 2.16 or 2.17!"
+  when: ansible_version.minor|int not in [15, 16, 17]
 
 - name: Fail on unsupported system
   ansible.builtin.fail: