Skip to content

Commit aea24ec

Browse files
committed
Initial openstack support
1 parent b9e236d commit aea24ec

3 files changed

Lines changed: 1208 additions & 1 deletion

File tree

module/sources/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
# define all available sources here
1111
from module.sources.vmware.connection import VMWareHandler
12+
from module.sources.openstack.connection import OpenStackHandler
1213
from module.sources.check_redfish.import_inventory import CheckRedfish
1314

1415
from module.common.logging import get_logger
@@ -18,7 +19,7 @@
1819
from module.config import source_config_section_name
1920

2021
# list of valid sources
21-
valid_sources = [VMWareHandler, CheckRedfish]
22+
valid_sources = [VMWareHandler, OpenStackHandler, CheckRedfish]
2223

2324

2425
def validate_source(source_class_object=None, state="pre"):

0 commit comments

Comments
 (0)