diff --git a/ansible_version.yml b/ansible_version.yml new file mode 100644 index 0000000000000000000000000000000000000000..982880e2f6fd6131f11ef7cc44d0876e6e1030d5 --- /dev/null +++ b/ansible_version.yml @@ -0,0 +1,15 @@ +--- +- hosts: localhost + gather_facts: false + become: no + vars: + minimal_ansible_version: 2.8.0 + ansible_connection: local + tasks: + - name: "Check ansible version >={{ minimal_ansible_version }}" + assert: + msg: "Ansible must be {{ minimal_ansible_version }} or higher" + that: + - ansible_version.string is version(minimal_ansible_version, ">=") + tags: + - check diff --git a/cluster.yml b/cluster.yml index 5573c69752c458ddf6b9e9502e06705029616f04..ca828206c8a9a7c070b26f71811b01939c1c3a94 100644 --- a/cluster.yml +++ b/cluster.yml @@ -1,17 +1,6 @@ --- -- hosts: localhost - gather_facts: false - become: no - tasks: - - name: "Check ansible version >=2.7.8" - assert: - msg: "Ansible must be v2.7.8 or higher" - that: - - ansible_version.string is version("2.7.8", ">=") - tags: - - check - vars: - ansible_connection: local +- name: Check ansible version + import_playbook: ansible_version.yml - hosts: all gather_facts: false diff --git a/mitogen.yaml b/mitogen.yaml index 853c39f9c3ac4a88f9f3888185310e42fd1c3553..d8d308794c462804808f53390414032b20ad9acf 100644 --- a/mitogen.yaml +++ b/mitogen.yaml @@ -1,9 +1,13 @@ --- +- name: Check ansible version + import_playbook: ansible_version.yml + - hosts: localhost strategy: linear vars: mitogen_version: master mitogen_url: https://github.com/dw/mitogen/archive/{{ mitogen_version }}.zip + ansible_connection: local tasks: - name: Create mitogen plugin dir file: diff --git a/recover-control-plane.yml b/recover-control-plane.yml index aca777ae1436ccbf67d0e36b1f193e70290114aa..fe8f74e8ad8623b5dbfb6958c75affd1e9969c90 100644 --- a/recover-control-plane.yml +++ b/recover-control-plane.yml @@ -1,17 +1,6 @@ --- -- hosts: localhost - gather_facts: False - become: no - tasks: - - name: "Check ansible version >=2.7.8" - assert: - msg: "Ansible must be v2.7.8 or higher" - that: - - ansible_version.string is version("2.7.8", ">=") - tags: - - check - vars: - ansible_connection: local +- name: Check ansible version + import_playbook: ansible_version.yml - hosts: bastion[0] gather_facts: False diff --git a/remove-node.yml b/remove-node.yml index db6f90529bfe3703b74040fdb08d2f955920e3bd..ee6956dcc5e72e72298f31b7bd6d9f1d04bd9262 100644 --- a/remove-node.yml +++ b/remove-node.yml @@ -1,17 +1,6 @@ --- -- hosts: localhost - become: no - gather_facts: no - tasks: - - name: "Check ansible version >=2.7.8" - assert: - msg: "Ansible must be v2.7.8 or higher" - that: - - ansible_version.string is version("2.7.8", ">=") - tags: - - check - vars: - ansible_connection: local +- name: Check ansible version + import_playbook: ansible_version.yml - hosts: "{{ node | default('etcd:k8s-cluster:calico-rr') }}" gather_facts: no diff --git a/reset.yml b/reset.yml index 21c92f7898c7d3e9eba068463ca8f07f7e10efb1..cf64c2f34cb910d31cc0fb954985031bfb9f7fea 100644 --- a/reset.yml +++ b/reset.yml @@ -1,17 +1,6 @@ --- -- hosts: localhost - become: no - gather_facts: False - tasks: - - name: "Check ansible version >=2.7.8" - assert: - msg: "Ansible must be v2.7.8 or higher" - that: - - ansible_version.string is version("2.7.8", ">=") - tags: - - check - vars: - ansible_connection: local +- name: Check ansible version + import_playbook: ansible_version.yml - hosts: bastion[0] gather_facts: False diff --git a/scale.yml b/scale.yml index 1dc7eb60cd94293395a9b0c5e39edce56d6b6c3e..65fecae0e98a97210b25f4b8825cdfcff256aabd 100644 --- a/scale.yml +++ b/scale.yml @@ -1,17 +1,6 @@ --- -- hosts: localhost - gather_facts: False - become: no - tasks: - - name: "Check ansible version >=2.7.8" - assert: - msg: "Ansible must be v2.7.8 or higher" - that: - - ansible_version.string is version("2.7.8", ">=") - tags: - - check - vars: - ansible_connection: local +- name: Check ansible version + import_playbook: ansible_version.yml - hosts: all gather_facts: false diff --git a/upgrade-cluster.yml b/upgrade-cluster.yml index 83c1502c333908fc228b00d9c9dbaf2d4d2185d6..70c3943fe362b7f2f0861a951e88172649cab360 100644 --- a/upgrade-cluster.yml +++ b/upgrade-cluster.yml @@ -1,17 +1,6 @@ --- -- hosts: localhost - gather_facts: false - become: no - tasks: - - name: "Check ansible version >=2.7.8" - assert: - msg: "Ansible must be v2.7.8 or higher" - that: - - ansible_version.string is version("2.7.8", ">=") - tags: - - check - vars: - ansible_connection: local +- name: Check ansible version + import_playbook: ansible_version.yml - hosts: all gather_facts: false