summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/verify_ansible_version.yml
blob: d75b23bf77fa578c2e4053f522033f4e83ff0c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: Verify Ansible version is greater than or equal to 2.1.0.0
  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')