bifrost/playbooks/cleanup-deployment-images.yaml
Riccardo Pittau a756129b47 Fix key-order ansible errors
Also fix some spacing warnings

Change-Id: Iec191273591ee88710438f3bbbf63ec242d0c247
2023-11-09 11:16:49 +01:00

15 lines
370 B
YAML

---
- name: "Remove the master_images folder and deployment kernel/ramdisk for clean redeployments when testing."
hosts: localhost
connection: local
become: yes
gather_facts: yes
tasks:
- file:
path: "{{ item }}"
state: absent
loop:
- "{{ ironic_tftp_master_path }}"
- "{{ ipa_kernel }}"
- "{{ ipa_ramdisk }}"