blob: 460ba4ce4d9cb1c02fc349717fc7905e65eadcd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
- hosts: OSEv3
gather_facts: no
roles:
- openshift_preflight/facts
- hosts: OSEv3
name: checks that apply to all hosts
gather_facts: no
ignore_errors: yes
roles:
- openshift_preflight/common
- hosts: masters
name: checks that apply to masters
gather_facts: no
ignore_errors: yes
roles:
- openshift_preflight/masters
- hosts: nodes
name: checks that apply to nodes
gather_facts: no
ignore_errors: yes
roles:
- openshift_preflight/nodes
- hosts: OSEv3
name: verify check results
gather_facts: no
roles:
- openshift_preflight/verify_status
|