From 2fc5ccc4fc9e24f6b55f1b3ba2abf0e53a25d491 Mon Sep 17 00:00:00 2001 From: Bartosz Bezak Date: Fri, 14 Jun 2024 10:28:34 +0200 Subject: [PATCH] CI: remove m2.tiny creation outside of init-runonce it is already in init-runonce in the previous release Change-Id: I7edc1216d3e74e995ed2051e9fd3d93196014836 --- tests/test-core-openstack.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/test-core-openstack.sh b/tests/test-core-openstack.sh index 4062b78ce7..e3928691a9 100755 --- a/tests/test-core-openstack.sh +++ b/tests/test-core-openstack.sh @@ -179,12 +179,6 @@ function create_instance { function resize_instance { local name=$1 - # TODO(priteau): Remove once previous_release includes m2.tiny in - # init-runonce - if ! openstack flavor list -f value | grep m2.tiny; then - openstack flavor create --id 6 --ram 512 --disk 1 --vcpus 2 m2.tiny - fi - openstack server resize --flavor m2.tiny --wait ${name} # If the status is not VERIFY_RESIZE, print info and exit 1 if [[ $(openstack server show ${name} -f value -c status) != "VERIFY_RESIZE" ]]; then