Nate Stephany
2020-03-14 2158c5d1da2cb16179e12d813cf827a7e14e1191
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
---
- name: Step 00xxxxx software
  hosts: localhost
  gather_facts: False
  become: false
  tasks:
    - debug:
        msg: "Software tasks started"
 
- name: Set up ClientVM
  hosts: bastions
  gather_facts: false
  become: true
  tasks:
  - name: Set up Client VM for OCP
    import_role:
      name: "ocp-client-vm"
 
- name: Software flight-check
  hosts: localhost
  connection: local
  gather_facts: false
  become: false
  tags:
    - post_flight_check
  tasks:
    - debug:
        msg: "Software checks completed successfully"