From: Daniel Swarbrick Date: Fri, 13 Feb 2026 16:07:09 +0000 (+0100) Subject: Extend ansible_version check to allow v2.17.x X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fmain;p=ceph-ansible.git Extend ansible_version check to allow v2.17.x Signed-off-by: Daniel Swarbrick --- diff --git a/roles/ceph-validate/tasks/check_system.yml b/roles/ceph-validate/tasks/check_system.yml index bd2a23196..da6cf1fb0 100644 --- a/roles/ceph-validate/tasks/check_system.yml +++ b/roles/ceph-validate/tasks/check_system.yml @@ -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: