Skip to content

Commit 39d6ce6

Browse files
author
Brendan Shephard
committed
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 <bshephar@redhat.com>
1 parent 5384a3d commit 39d6ce6

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tests/functional/ctlplane/base_test.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ func GetDefaultOpenStackControlPlaneSpec() map[string]interface{} {
430430
"template": keystoneTemplate,
431431
},
432432
"placement": map[string]interface{}{
433-
"enabled": false,
433+
"enabled": true,
434434
},
435435
"glance": map[string]interface{}{
436436
"enabled": true,
@@ -442,29 +442,29 @@ func GetDefaultOpenStackControlPlaneSpec() map[string]interface{} {
442442
"enabled": true,
443443
},
444444
"ovn": map[string]interface{}{
445-
"enabled": false,
445+
"enabled": true,
446446
},
447447
"neutron": map[string]interface{}{
448448
"enabled": true,
449449
},
450450
"swift": map[string]interface{}{
451-
"enabled": false,
451+
"enabled": true,
452452
},
453453
"nova": map[string]interface{}{
454-
"enabled": false,
454+
"enabled": true,
455455
},
456456
"redis": map[string]interface{}{
457457
"enabled": false,
458458
},
459459
"ironic": map[string]interface{}{
460-
"enabled": false,
460+
"enabled": true,
461461
"template": ironicTemplate,
462462
},
463463
"designate": map[string]interface{}{
464-
"enabled": false,
464+
"enabled": true,
465465
},
466466
"barbican": map[string]interface{}{
467-
"enabled": false,
467+
"enabled": true,
468468
},
469469
"openstackclient": map[string]interface{}{
470470
"enabled": true,

0 commit comments

Comments
 (0)