diff --git a/fixtures/scenario001.pp b/fixtures/scenario001.pp index 9a48ed334..e026e38de 100644 --- a/fixtures/scenario001.pp +++ b/fixtures/scenario001.pp @@ -71,4 +71,5 @@ class { '::openstack_integration::tempest': gnocchi => true, ceilometer => true, aodh => true, + panko => $enable_panko, } diff --git a/manifests/tempest.pp b/manifests/tempest.pp index 2d61a044b..2c6898db0 100644 --- a/manifests/tempest.pp +++ b/manifests/tempest.pp @@ -32,6 +32,10 @@ # (optional) Define if Gnocchi needs to be tested. # Default to false. # +# [*panko*] +# (optional) Define if Panko needs to be tested. +# Default to false. +# # [*heat*] # (optional) Define if Heat needs to be tested. # Default to false. @@ -93,6 +97,7 @@ class openstack_integration::tempest ( $ec2api = false, $glance = true, $gnocchi = false, + $panko = false, $heat = false, $horizon = false, $ironic = false, @@ -161,6 +166,7 @@ class openstack_integration::tempest ( zaqar_available => $zaqar, mistral_available => $mistral, gnocchi_available => $gnocchi, + panko_available => $panko, ec2api_available => $ec2api, watcher_available => $watcher, public_network_name => 'public',