From 500bce55593389322e1ff721a6585ace4823eaa9 Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Mon, 3 Mar 2025 11:30:51 +0100 Subject: [PATCH] Disable flavor_instance_plugin testing by default We have CI issues on stable branches where we try to test flavor-based instance reservation even though it is not supported in these releases. We can enable this testing by default once we drop support for releases older than 2024.2 (Dalmatian). Change-Id: Icc97572f0d30eff6ab77e667952a83f7f683ef84 --- .zuul.yaml | 6 ++++++ blazar_tempest_plugin/config.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.zuul.yaml b/.zuul.yaml index 811f547..fd19558 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -79,6 +79,12 @@ parent: blazar-tempest-plugin-base nodeset: openstack-single-node-jammy override-checkout: stable/2024.2 + vars: + devstack_local_conf: + test-config: + $TEMPEST_CONFIG: + resource_reservation: + flavor_instance_plugin: true - job: name: blazar-tempest-plugin-2024-1 diff --git a/blazar_tempest_plugin/config.py b/blazar_tempest_plugin/config.py index 614ddec..1b9eb06 100644 --- a/blazar_tempest_plugin/config.py +++ b/blazar_tempest_plugin/config.py @@ -37,7 +37,7 @@ ResourceReservationGroup = [ help="The endpoint type to use for the resource_reservation " "service."), cfg.BoolOpt('flavor_instance_plugin', - default=True, + default=False, help="Whether to test flavor-based instance reservation"), cfg.IntOpt('lease_interval', default=10,