Files
awx-operator/roles/mesh_ingress/tasks/main.yml
Hao Liu 69474557eb Default ingress_type to route when on OpenShift
also rename route.yml.j2 to ingress.yml.j2 since we cover more than just route now
2024-01-18 15:38:18 -05:00

13 lines
264 B
YAML

---
- name: Lowercase the ingress_type
set_fact:
ingress_type: "{{ ingress_type | lower }}"
- name: Run creation tasks
include_tasks: creation.yml
when: not finalizer_run
- name: Run finalizer tasks
include_tasks: finalizer.yml
when: finalizer_run