terminate.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. - name: Terminate instance(s)
  2. hosts: localhost
  3. connection: local
  4. gather_facts: no
  5. vars:
  6. libvirt_storage_pool_path: "{{ lookup('env','HOME') }}/libvirt-storage-pool-openshift"
  7. libvirt_storage_pool: 'openshift'
  8. libvirt_uri: 'qemu:///system'
  9. tasks:
  10. - name: List VMs
  11. virt:
  12. command: list_vms
  13. register: list_vms
  14. - name: Destroy VMs
  15. virt:
  16. name: '{{ item[0] }}'
  17. command: '{{ item[1] }}'
  18. uri: '{{ libvirt_uri }}'
  19. with_nested:
  20. - '{{ list_vms.list_vms }}'
  21. - [ destroy, undefine ]
  22. when: item[0]|truncate(cluster_id|length+1, True) == '{{ cluster_id }}-...'
  23. - name: Delete VMs config drive
  24. file:
  25. path: '{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/openstack'
  26. state: absent
  27. with_items: '{{ list_vms.list_vms }}'
  28. when: item|truncate(cluster_id|length+1, True) == '{{ cluster_id }}-...'
  29. - name: Delete VMs drives
  30. command: 'virsh -c {{ libvirt_uri }} vol-delete --pool {{ libvirt_storage_pool }} {{ item[0] }}{{ item[1] }}'
  31. args:
  32. removes: '{{ libvirt_storage_pool_path }}/{{ item[0] }}{{ item[1] }}'
  33. with_nested:
  34. - '{{ list_vms.list_vms }}'
  35. - [ '_configdrive', '_cloud-init.iso', '.qcow2' ]
  36. when: item[0]|truncate(cluster_id|length+1, True) == '{{ cluster_id }}-...'