12345678910111213141516171819202122232425262728293031323334353637 |
- ---
- - name: Destroy oVirt VMs
- hosts: localhost
- connection: local
- gather_facts: false
- pre_tasks:
- - name: Log in to oVirt
- ovirt_auth:
- url: "{{ engine_url }}"
- username: "{{ engine_user }}"
- password: "{{ engine_password }}"
- ca_file: "{{ engine_cafile | default(omit) }}"
- insecure: "{{ engine_insecure | default(true) }}"
- tags:
- - always
- - name: Build virtual machine facts
- import_role:
- name: openshift_ovirt
- tasks_from: build_vm_list.yml
- tasks:
- - name: Erase vms
- ovirt_vms:
- auth: "{{ ovirt_auth }}"
- state: absent
- name: "{{ item.name }}"
- with_items:
- - "{{ ovirt_vm_infra_vms }}"
- post_tasks:
- - name: Logout from oVirt
- ovirt_auth:
- state: absent
- ovirt_auth: "{{ ovirt_auth }}"
- tags:
- - always
|