From ebdeee396e12b7ac1db2794c7996e67033d16384 Mon Sep 17 00:00:00 2001 From: Eduardo Olivares Date: Thu, 23 Nov 2023 16:40:02 +0100 Subject: [PATCH] Fix cleanup octavia LBs Change-Id: I805b0d434e2c2f204645eff8c9e38ce825b2e405 --- roles/tobiko-cleanup/tasks/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/tobiko-cleanup/tasks/main.yaml b/roles/tobiko-cleanup/tasks/main.yaml index 6c92064ed..1a7bab8c0 100644 --- a/roles/tobiko-cleanup/tasks/main.yaml +++ b/roles/tobiko-cleanup/tasks/main.yaml @@ -1,7 +1,7 @@ --- - name: "cleanup Loadbalancers created by Tobiko tests" shell: | - for lb in $({{ openstack_cmd }} loadbalancer list -f value -c 'name' | grep "^tobiko\.") + for lb in $({{ openstack_cmd }} loadbalancer list -f value -c 'name' | grep "^tobiko") do {{ openstack_cmd }} loadbalancer delete --cascade --wait $lb done