ovirt-vm-uninstall.yml 876 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - name: Destroy oVirt VMs
  3. hosts: localhost
  4. connection: local
  5. gather_facts: false
  6. pre_tasks:
  7. - name: Log in to oVirt
  8. ovirt_auth:
  9. url: "{{ engine_url }}"
  10. username: "{{ engine_user }}"
  11. password: "{{ engine_password }}"
  12. ca_file: "{{ engine_cafile | default(omit) }}"
  13. insecure: "{{ engine_insecure | default(true) }}"
  14. tags:
  15. - always
  16. - name: Build virtual machine facts
  17. import_role:
  18. name: openshift_ovirt
  19. tasks_from: build_vm_list.yml
  20. tasks:
  21. - name: Erase vms
  22. ovirt_vms:
  23. auth: "{{ ovirt_auth }}"
  24. state: absent
  25. name: "{{ item.name }}"
  26. with_items:
  27. - "{{ ovirt_vm_infra_vms }}"
  28. post_tasks:
  29. - name: Logout from oVirt
  30. ovirt_auth:
  31. state: absent
  32. ovirt_auth: "{{ ovirt_auth }}"
  33. tags:
  34. - always