Browse Source

Check ansible version prior to evaluating cluster hosts and groups.

Andrew Butcher 8 years ago
parent
commit
c3c88fb35f

+ 3 - 0
playbooks/aws/openshift-cluster/config.yml

@@ -1,3 +1,6 @@
+---
+- include: ../../common/openshift-cluster/verify_ansible_version.yml
+
 - hosts: localhost
   gather_facts: no
   tasks:

+ 2 - 0
playbooks/byo/openshift-cluster/config.yml

@@ -1,4 +1,6 @@
 ---
+- include: ../../common/openshift-cluster/verify_ansible_version.yml
+
 - hosts: localhost
   connection: local
   become: no

+ 2 - 0
playbooks/byo/openshift-cluster/upgrades/v3_2/upgrade.yml

@@ -1,4 +1,6 @@
 ---
+- include: ../../common/openshift-cluster/verify_ansible_version.yml
+
 - hosts: localhost
   connection: local
   become: no

+ 2 - 0
playbooks/byo/openshift_facts.yml

@@ -1,4 +1,6 @@
 ---
+- include: ../common/openshift-cluster/verify_ansible_version.yml
+
 - hosts: localhost
   connection: local
   become: no

+ 10 - 0
playbooks/common/openshift-cluster/verify_ansible_version.yml

@@ -0,0 +1,10 @@
+---
+- hosts: localhost
+  connection: local
+  become: no
+  gather_facts: no
+  tasks:
+  - name: Verify Ansible version is greater than or equal to 2.1.0.0
+    fail:
+      msg: "Unsupported ansible version: {{ ansible_version.full }} found"
+    when: not ansible_version.full | version_compare('2.1.0.0', 'ge')

+ 3 - 0
playbooks/libvirt/openshift-cluster/config.yml

@@ -2,6 +2,9 @@
 # TODO: need to figure out a plan for setting hostname, currently the default
 # is localhost, so no hostname value (or public_hostname) value is getting
 # assigned
+
+- include: ../../common/openshift-cluster/verify_ansible_version.yml
+
 - hosts: localhost
   gather_facts: no
   tasks:

+ 2 - 0
playbooks/openstack/openshift-cluster/config.yml

@@ -1,4 +1,6 @@
 ---
+- include: ../../common/openshift-cluster/verify_ansible_version.yml
+
 - hosts: localhost
   gather_facts: no
   tasks:

+ 0 - 5
roles/openshift_facts/tasks/main.yml

@@ -1,9 +1,4 @@
 ---
-- name: Verify Ansible version is greater than or equal to 2.1.0.0
-  fail:
-    msg: "Unsupported ansible version: {{ ansible_version.full }} found"
-  when: not ansible_version.full | version_compare('2.1.0.0', 'ge')
-
 - name: Detecting Operating System
   stat:
     path: /run/ostree-booted