tempest: Fix wrong availability defined for ironic-inspector

ironic-inspector is now deployed in scenario 002.

Depends-on: https://review.opendev.org/932161
Change-Id: Ief5c8579fafe93189cda9aeb80e8dc3202b8ea19
This commit is contained in:
Takashi Kajinami
2024-10-11 01:27:47 +09:00
parent e6345da838
commit f73b9749a4
2 changed files with 7 additions and 0 deletions

View File

@@ -113,6 +113,7 @@ class { 'openstack_integration::tempest':
horizon => true,
swift => true,
ironic => true,
ironic_inspector => true,
zaqar => true,
attach_encrypted_volume => true,
}

View File

@@ -48,6 +48,10 @@
# (optional) Define if Ironic needs to be tested.
# Default to false.
#
# [*ironic_inspector*]
# (optional) Define if Ironic-inspector needs to be tested.
# Default to false.
#
# [*l2gw*]
# (optional) Define if L2GW needs to be tested.
# Default to false.
@@ -160,6 +164,7 @@ class openstack_integration::tempest (
$heat = false,
$horizon = false,
$ironic = false,
$ironic_inspector = false,
$l2gw = false,
$l2gw_switch = undef,
$dr = false,
@@ -324,6 +329,7 @@ class openstack_integration::tempest (
heat_available => $heat,
swift_available => $swift,
ironic_available => $ironic,
ironic_inspector_available => $ironic_inspector,
zaqar_available => $zaqar,
manila_available => $manila,
mistral_available => $mistral,