Nate Stephany
2020-03-14 2158c5d1da2cb16179e12d813cf827a7e14e1191
commit | author | age
8d7955 1 ---
WK 2 - name: Step 00xxxxx software
3   hosts: localhost
4   gather_facts: False
5   become: false
6   tasks:
7     - debug:
8         msg: "Software tasks started"
9
10 - name: Set up ClientVM
11   hosts: bastions
12   gather_facts: false
13   become: true
5f2907 14   tasks:
2158c5 15   - name: Set up Client VM for OCP
NS 16     import_role:
efe8d4 17       name: "ocp-client-vm"
8d7955 18
WK 19 - name: Software flight-check
20   hosts: localhost
21   connection: local
22   gather_facts: false
23   become: false
24   tags:
25     - post_flight_check
26   tasks:
27     - debug:
28         msg: "Software checks completed successfully"