summaryrefslogtreecommitdiffstats
path: root/ansible/roles/application-install/tasks/custom_role.yml
blob: 3c6237e35ba678f3dcd70639d57c5cd08ebb9f20 (plain)
1
2
3
4
5
6
7
8
9
---
# Caller fills application_custom_role variable with actual role name.
- name: "Execute custom role {{ application_custom_role }} {{ phase }} Helm install."
  include_role:
    name: "{{ application_custom_role }}"
  when:
    - application_custom_role is defined
    - application_custom_role is not none
    - application_custom_role | trim != ''