From 41751fe432118756d6dca43ddfa6700820c65577 Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Mon, 18 Mar 2024 17:21:52 +0100 Subject: [PATCH] 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 --- tests/integration/targets/inventory_kubevirt/cleanup.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/targets/inventory_kubevirt/cleanup.yml b/tests/integration/targets/inventory_kubevirt/cleanup.yml index 1ce7441..72ba14b 100644 --- a/tests/integration/targets/inventory_kubevirt/cleanup.yml +++ b/tests/integration/targets/inventory_kubevirt/cleanup.yml @@ -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