From 06a8a2c378da076bd3de727608eb450892642c1d Mon Sep 17 00:00:00 2001 From: Varac <varac@varac.net> Date: Wed, 3 Jul 2019 13:01:26 +0200 Subject: [PATCH] Verify ansible 2.8 is used --- ansible/bootstrap.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ansible/bootstrap.yml b/ansible/bootstrap.yml index 134b6b79c..44809af9d 100644 --- a/ansible/bootstrap.yml +++ b/ansible/bootstrap.yml @@ -6,10 +6,9 @@ - name: Require minimal ansible version assert: that: - - "ansible_version.full is version_compare('2.7', '>=')" - - "ansible_version.full is version_compare('2.8', '<')" + - "ansible_version.full is version_compare('2.8', '>=')" msg: > - "Please use Ansible 2.7.x to bootstrap your OAS cluster." + "Please use Ansible 2.8.x to bootstrap your OAS cluster." - name: Release name must start with lower case assert: -- GitLab