mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-30 08:50:55 +08:00
16 lines
406 B
YAML
16 lines
406 B
YAML
---
|
|
- name: Delete object file ({{tmpfile.path}})
|
|
file:
|
|
path=/etc/openshift_apps/{{app}}/{{objectname}}.yml
|
|
state=absent
|
|
when: objecttype != 'project'
|
|
|
|
- name: Delete project files ({{tmpfile.path}})
|
|
file:
|
|
path=/etc/openshift_apps/{{app}}
|
|
state=absent
|
|
when: objecttype == 'project'
|
|
|
|
- name: Call `oc delete` on the object
|
|
shell: oc -n {{app}} delete {{objecttype}}/{{objectname}}
|