From e786072df7e7e966480816308e0cfbf66fe702d3 Mon Sep 17 00:00:00 2001 From: Daniel Swarbrick Date: Fri, 13 Feb 2026 17:07:09 +0100 Subject: [PATCH] Extend ansible_version check to allow v2.17.x Signed-off-by: Daniel Swarbrick --- roles/ceph-validate/tasks/check_system.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.47.3