Fix configuration setup
This commit fixes some issues with configuration setup in the plugin.
Firstly, it adds the service available option which was missing from
the plugin. (this opt will be removed from tempest when this lands in
openstack) This also fixes the variable name used for registering the
plugins which was previously incorrectly using BotoGroup.
diff --git a/tempest_horizon/config.py b/tempest_horizon/config.py
index bb53abb..7866d0b 100644
--- a/tempest_horizon/config.py
+++ b/tempest_horizon/config.py
@@ -24,3 +24,7 @@
help="Login page for the dashboard",
deprecated_for_removal=True),
]
+
+service_opt = cfg.BoolOpt(
+ 'horizon', default=True,
+ help="Whether or not Horizon is expected to be available")