Browse Source

Fail on Ansible version 2.2.1.0

Due to issues with Ansible 2.2.1.0, the version verification has been
updated to fail when attempting to use that version.
Russell Teague 8 years ago
parent
commit
4159d1f4ca
1 changed files with 12 additions and 1 deletions
  1. 12 1
      callback_plugins/aa_version_requirement.py

+ 12 - 1
callback_plugins/aa_version_requirement.py

@@ -30,7 +30,12 @@ else:
 
 # Set to minimum required Ansible version
 REQUIRED_VERSION = '2.2.0.0'
-DESCRIPTION = "Supported versions: %s or newer" % REQUIRED_VERSION
+DESCRIPTION = "Supported versions: %s or newer (except 2.2.1.0)" % REQUIRED_VERSION
+FAIL_ON_2_2_1_0 = "There are known issues with Ansible version 2.2.1.0 which " \
+                  "are impacting OpenShift-Ansible. Please use Ansible " \
+                  "version 2.2.0.0 or a version greater than 2.2.1.0. " \
+                  "See this issue for more details: " \
+                  "https://github.com/openshift/openshift-ansible/issues/3111"
 
 
 def version_requirement(version):
@@ -58,3 +63,9 @@ class CallbackModule(CallbackBase):
                 'FATAL: Current Ansible version (%s) is not supported. %s'
                 % (__version__, DESCRIPTION), color='red')
             sys.exit(1)
+
+        if __version__ == '2.2.1.0':
+            display(
+                'FATAL: Current Ansible version (%s) is not supported. %s'
+                % (__version__, FAIL_ON_2_2_1_0), color='red')
+            sys.exit(1)