mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-29 06:43:11 +00:00
13 lines
264 B
YAML
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
|