X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=doctor_tests%2Finstaller%2F__init__.py;h=1ee59d9932c474fb57285804348c867796ecdf7b;hb=3e882aeb6b55ceef3bd3c20155f0014a7b8c058e;hp=02735b118ec5b90c6397fc166207dc93c2433049;hpb=bdbd22904733af311225a3315555bb39ea12ed55;p=doctor.git diff --git a/doctor_tests/installer/__init__.py b/doctor_tests/installer/__init__.py index 02735b11..1ee59d99 100644 --- a/doctor_tests/installer/__init__.py +++ b/doctor_tests/installer/__init__.py @@ -14,7 +14,7 @@ from oslo_utils import importutils OPTS = [ cfg.StrOpt('type', default=os.environ.get('INSTALLER_TYPE', 'local'), - choices=['local', 'apex'], + choices=['local', 'apex', 'daisy'], help='the type of installer', required=True), cfg.StrOpt('ip', @@ -29,7 +29,8 @@ OPTS = [ _installer_name_class_mapping = { 'local': 'doctor_tests.installer.local.LocalInstaller', - 'apex': 'doctor_tests.installer.apex.ApexInstaller' + 'apex': 'doctor_tests.installer.apex.ApexInstaller', + 'daisy': 'doctor_tests.installer.daisy.DaisyInstaller' }