Skip to content
Snippets Groups Projects
Commit 7837c9b7 authored by Rafal Lewandowski's avatar Rafal Lewandowski
Browse files

Add ironic config files clean up tasks to overcloud deprovision

Closes-Bug: #2067288
Change-Id: I57fb4c1697a31d4f592d79a31a04507cf91e97c7
parent 27ece262
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,22 @@
Deprovision has not been confirmed. You must either type 'yes' when
prompted, or set ``confirm_deprovision=yes``.
- name: Get PXE MAC address
command: >
docker exec bifrost_deploy
bash -c '
export OS_CLOUD=bifrost &&
export OS_BAREMETAL_API_VERSION=1.34 &&
export BIFROST_INVENTORY_SOURCE=ironic &&
export BIFROST_NODE_NAMES="{{ inventory_hostname }}" &&
openstack baremetal port list --node {{ inventory_hostname }} --fields address -f value'
register: pxe_result
delegate_to: "{{ seed_host }}"
vars:
# NOTE: Without this, the seed's ansible_host variable will not be
# respected when using delegate_to.
ansible_host: "{{ hostvars[seed_host].ansible_host | default(seed_host) }}"
- name: Check the ironic node's initial provision state
command: >
docker exec bifrost_deploy
......@@ -156,3 +172,26 @@
- wait_available | bool
- initial_provision_state != 'available'
- final_provision_state != 'available'
- name: Delete host_vars file
become: yes
ansible.builtin.file:
path: /etc/kolla/bifrost/inventory/host_vars/{{ inventory_hostname }}
state: absent
delegate_to: "{{ seed_host }}"
vars:
# NOTE: Without this, the seed's ansible_host variable will not be
# respected when using delegate_to.
ansible_host: "{{ hostvars[seed_host].ansible_host | default(seed_host) }}"
- name: Delete ironic-mac-addr.conf
command: >
docker exec bifrost_deploy
bash -c '
rm -f /etc/dnsmasq.d/bifrost.dhcp-hosts.d/ironic-{{ item }}.conf'
loop: "{{ pxe_result.stdout_lines }}"
delegate_to: "{{ seed_host }}"
vars:
# NOTE: Without this, the seed's ansible_host variable will not be
# respected when using delegate_to.
ansible_host: "{{ hostvars[seed_host].ansible_host | default(seed_host) }}"
---
fixes:
- |
Fixes issue of ironic files being left behind after node deprovision which
prevents it from being enrolled and provisioned again.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment