diff --git a/fixtures/scenario002.pp b/fixtures/scenario002.pp index f38eefb9e..c348ff81f 100644 --- a/fixtures/scenario002.pp +++ b/fixtures/scenario002.pp @@ -113,6 +113,7 @@ class { 'openstack_integration::tempest': horizon => true, swift => true, ironic => true, + ironic_inspector => true, zaqar => true, attach_encrypted_volume => true, } diff --git a/manifests/tempest.pp b/manifests/tempest.pp index e53d6a1b7..b07f2f6e3 100644 --- a/manifests/tempest.pp +++ b/manifests/tempest.pp @@ -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,