chore: Fix names in inventory cleanup

We are deleting VMs, not creating VMs. Therefore change the names to
reflect that.

Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
This commit is contained in:
Felix Matouschek
2024-03-18 17:21:52 +01:00
parent 21c2bacbb4
commit 41751fe432

View File

@@ -1,17 +1,17 @@
---
- name: Create VMs
- name: Delete VMs
connection: local
gather_facts: false
hosts: localhost
tasks:
- name: Create a VM
- name: Delete a VM
kubevirt.core.kubevirt_vm:
state: absent
name: testvm1
namespace: default
wait: true
- name: Create another VM
- name: Delete another VM
kubevirt.core.kubevirt_vm:
state: absent
name: testvm2