12345678910111213141516171819 |
- ---
- - include: openshift-cluster/initialize_groups.yml
- tags:
- - always
- - include: ../common/openshift-cluster/std_include.yml
- tags:
- - always
- - name: Gather Cluster facts
- # Temporarily reverting to OSEv3 until group standardization is complete
- hosts: OSEv3
- roles:
- - openshift_facts
- tasks:
- - openshift_facts:
- openshift_env: "{{ hostvars[inventory_hostname] | oo_openshift_env }}"
- register: result
- - debug: var=result
|