summaryrefslogtreecommitdiffstats
path: root/roles/openshift_facts/tasks/main.yml
blob: 2e889d7d5dd106419cd89e67d98983488272edc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
- name: Verify Ansible version is greater than 1.8.0 and not 1.9.0 and not 1.9.0.1
  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: Ensure PyYaml is installed
  yum: pkg={{ item }} state=installed
  when: ansible_pkg_mgr == "yum"
  with_items:
    - PyYAML

- name: Ensure PyYaml is installed
  dnf: pkg={{ item }} state=installed
  when: ansible_pkg_mgr == "dnf"
  with_items:
    - PyYAML

- name: Gather Cluster facts
  openshift_facts: