-
Notifications
You must be signed in to change notification settings - Fork 498
/
Copy pathpost_software.yml
43 lines (36 loc) · 966 Bytes
/
post_software.yml
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
33
34
35
36
37
38
39
40
41
42
43
---
- name: Step 005 Post Software
hosts: localhost
gather_facts: false
become: false
tasks:
- debug:
msg: "Step 005 Post Software"
- name: Step 005.2 - Deploy Workloads
ansible.builtin.import_playbook: workloads.yml
- name: Showroom setup
hosts: bastions[0]
gather_facts: true
become: true
tags:
- showroom
tasks:
- name: Deploy Showroom Web Interface
when: showroom_git_repo is defined
ansible.builtin.include_role:
name: showroom
- name: PostSoftware flight-check
hosts: localhost
connection: local
gather_facts: false
become: false
tags:
- post_flight_check
tasks:
- name: Deploy Showroom on shared cluster
when: showroom_deploy_shared_cluster_enable | default(false) | bool
ansible.builtin.include_role:
name: ocp4_workload_showroom
- name: Finish Post Software
ansible.builtin.debug:
msg: "Post-Software checks completed successfully"