support MCP installer
[doctor.git] / doctor_tests / installer / __init__.py
index 1ee59d9..31fce75 100644 (file)
@@ -14,7 +14,7 @@ from oslo_utils import importutils
 OPTS = [
     cfg.StrOpt('type',
                default=os.environ.get('INSTALLER_TYPE', 'local'),
-               choices=['local', 'apex', 'daisy'],
+               choices=['local', 'apex', 'daisy', 'fuel'],
                help='the type of installer',
                required=True),
     cfg.StrOpt('ip',
@@ -30,7 +30,8 @@ OPTS = [
 _installer_name_class_mapping = {
     'local': 'doctor_tests.installer.local.LocalInstaller',
     'apex': 'doctor_tests.installer.apex.ApexInstaller',
-    'daisy': 'doctor_tests.installer.daisy.DaisyInstaller'
+    'daisy': 'doctor_tests.installer.daisy.DaisyInstaller',
+    'fuel': 'doctor_tests.installer.mcp.McpInstaller'
 }