From 39d6ce643be92bc1ae28d5a33d2d79cb90263fb6 Mon Sep 17 00:00:00 2001 From: Brendan Shephard Date: Fri, 7 Jun 2024 12:51:11 +1000 Subject: [PATCH] Enable all services in Functional tests This change enables all of the services in the functional tests. This ensures that each service's code path is executed and should catch any potential issues before services are enabled in integration testing. Signed-off-by: Brendan Shephard --- tests/functional/ctlplane/base_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/functional/ctlplane/base_test.go b/tests/functional/ctlplane/base_test.go index 92d171881..129d4658e 100644 --- a/tests/functional/ctlplane/base_test.go +++ b/tests/functional/ctlplane/base_test.go @@ -430,7 +430,7 @@ func GetDefaultOpenStackControlPlaneSpec() map[string]interface{} { "template": keystoneTemplate, }, "placement": map[string]interface{}{ - "enabled": false, + "enabled": true, }, "glance": map[string]interface{}{ "enabled": true, @@ -442,29 +442,29 @@ func GetDefaultOpenStackControlPlaneSpec() map[string]interface{} { "enabled": true, }, "ovn": map[string]interface{}{ - "enabled": false, + "enabled": true, }, "neutron": map[string]interface{}{ "enabled": true, }, "swift": map[string]interface{}{ - "enabled": false, + "enabled": true, }, "nova": map[string]interface{}{ - "enabled": false, + "enabled": true, }, "redis": map[string]interface{}{ "enabled": false, }, "ironic": map[string]interface{}{ - "enabled": false, + "enabled": true, "template": ironicTemplate, }, "designate": map[string]interface{}{ - "enabled": false, + "enabled": true, }, "barbican": map[string]interface{}{ - "enabled": false, + "enabled": true, }, "openstackclient": map[string]interface{}{ "enabled": true,