Fix tempest.conf generation

The tempest.conf generation was missing the [service_available]
group, therefore, it was impossible to activate murano. This patch
fixes that.

Change-Id: I74309fc50fb57dad3b05220f797a4d28a22b7606
Co-Author: Matthew Treinish
This commit is contained in:
Thomas Goirand 2016-04-27 21:28:12 +00:00
parent 10ced8221d
commit 675db99323

View File

@ -44,4 +44,6 @@ class MuranoTempestPlugin(plugins.TempestPlugin):
return [(config_application_catalog.application_catalog_group.name,
config_application_catalog.ApplicationCatalogGroup),
(config_application_catalog.service_broker_group.name,
config_application_catalog.ServiceBrokerGroup)]
config_application_catalog.ServiceBrokerGroup),
('service_available',
config_application_catalog.ServiceAvailableGroup)]