blob: 85a65b7e1ee20dd35f617854f4be1bb448572a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- import_playbook: ../init/main.yml
- name: Gather Cluster facts
hosts: oo_all_hosts
roles:
- openshift_facts
tasks:
- openshift_facts: {}
register: result
- debug:
var: result
|