mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-03-26 19:03:16 +00:00
Run the integration tests for kubevirt_vm in a random namespace and cleanup after the tests finish. Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
17 lines
351 B
YAML
17 lines
351 B
YAML
---
|
|
- name: Generate test files
|
|
connection: local
|
|
gather_facts: false
|
|
hosts: localhost
|
|
tasks:
|
|
- name: Generate test files
|
|
ansible.builtin.template:
|
|
src: "{{ item }}.yml.j2"
|
|
dest: "{{ item }}.yml"
|
|
mode: "0644"
|
|
with_items:
|
|
- playbook
|
|
- test.kubevirt
|
|
- verify
|
|
- wait_for_vm
|