Wolfgang Kulhanek
2020-03-16 96f73bbfe948e2a2789c7f609bfac6308926eaa3
commit | author | age
c8774c 1 ---
96f73b 2 # Set up the combined dictionary for the workload
WK 3
4 # To Do: Adjust the names of your dictionaries here
5 - name: Set up ocp4_workload_example combined dictionary
6   set_fact:
7     ocp_workload_example: >-
8       {{ ocp_workload_example_defaults
9        | combine(ocp_workload_example_vars    | default( {} ),
10                  ocp_workload_example_secrets | default( {} ), recursive=true )
11       }}
12
c8774c 13 # Implement your Workload removal tasks here
96f73b 14 # ------------------------------------------
WK 15
c8774c 16
WK 17
18 # Leave this as the last task in the playbook.
96f73b 19 # --------------------------------------------
c8774c 20 - name: remove_workload tasks complete
WK 21   debug:
22     msg: "Remove Workload tasks completed successfully."
23   when: not silent|bool