diff --git a/fixtures/scenario003.pp b/fixtures/scenario003.pp index 12fb9cb63..b7148dace 100644 --- a/fixtures/scenario003.pp +++ b/fixtures/scenario003.pp @@ -21,6 +21,8 @@ case $::osfamily { $mistral_enabled = false # murano package should be fixed on Ubuntu Xenial $murano_enabled = false + # TODO(aschultz): sahara is currently missing from xenial pike + $sahara_enabled = false # trove package contains broken Tempest tests $trove = false } @@ -28,6 +30,7 @@ case $::osfamily { $ipv6 = true $mistral_enabled = true $murano_enabled = true + $sahara_enabled = true $trove_enabled = true } default: { @@ -69,7 +72,9 @@ if $trove_enabled { } include ::openstack_integration::horizon include ::openstack_integration::heat -include ::openstack_integration::sahara +if $sahara_enabled { + include ::openstack_integration::sahara +} if $designate_enabled { include ::openstack_integration::designate }