summaryrefslogtreecommitdiffstats
path: root/roles/openshift_facts/tasks/main.yml
blob: fd3d20800ae391e7743f7c4d1b7dc37c7a4bd78a (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: Verify Ansible version is greater than 1.8.0 and not 1.9.0
  assert:
    that:
    - ansible_version | version_compare('1.8.0', 'ge')
    - ansible_version | version_compare('1.9.0', 'ne')
    - ansible_version | version_compare('1.9.0.1', 'ne')

- name: Gather Cluster facts
  openshift_facts: