Skip to content

Commit

Permalink
Enable all services in Functional tests
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
bshephar committed Jun 19, 2024
1 parent 05bf8cb commit 75e8bc3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/functional/ctlplane/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func GetDefaultOpenStackControlPlaneSpec() map[string]interface{} {
"template": keystoneTemplate,
},
"placement": map[string]interface{}{
"enabled": false,
"enabled": true,
},
"glance": map[string]interface{}{
"enabled": true,
Expand All @@ -387,26 +387,26 @@ 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,
},
"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,
Expand Down

0 comments on commit 75e8bc3

Please sign in to comment.