Create host inventory services (api, conductor and agent) and
python-inventoryclient.
The inventory service collects the host resources and provides a
REST API and client to expose the host resources.
Create plugin for integration with system configuration (sysinv)
service.
This is the initial inventory service infratructure commit.
Puppet configuration, SM integration and host integration with
sysinv(systemconfig) changes are pending and planned to be
delivered in future commits.
Tests Performed:
Verify the changes are inert on config_controller installation
and provisioning.
Puppet and spec changes are required in order to create keystone,
database and activate inventory services.
Unit tests performed (when puppet configuration for keystone, database
is applied):
Trigger host configure_check, configure signals into
systemconfig(sysinv).
Verify python-inventoryclient and api service:
Disks and related storage resources are pending.
inventory host-cpu-list/show
inventory host-device-list/show/modify
inventory host-ethernetport-list/show
inventory host-lldp-neighbor-list
inventory host-lldp-agent-list/show
inventory host-memory-list/show
inventory host-node-list/show
inventory host-port-list/show
Tox Unit tests:
inventory: pep8
python-inventoryclient: py27, pep8, cover, pylint
Change-Id: I744ac0de098608c55b9356abf180cc36601cfb8d
Story: 2002950
Task: 22952
Signed-off-by: John Kung <john.kung@windriver.com>
74 lines
2.0 KiB
Python
74 lines
2.0 KiB
Python
#
|
|
# Copyright (c) 2018 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
from inventory.api import hooks
|
|
from inventory.common import config
|
|
from inventory import objects
|
|
from keystoneauth1 import loading as ks_loading
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
import pbr.version
|
|
import sys
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
sysinv_group = cfg.OptGroup(
|
|
'sysinv',
|
|
title='Sysinv Options',
|
|
help="Configuration options for the platform service")
|
|
|
|
sysinv_opts = [
|
|
cfg.StrOpt('catalog_info',
|
|
default='platform:sysinv:internalURL',
|
|
help="Service catalog Look up info."),
|
|
cfg.StrOpt('os_region_name',
|
|
default='RegionOne',
|
|
help="Region name of this node. It is used for catalog lookup"),
|
|
]
|
|
|
|
version_info = pbr.version.VersionInfo('inventory')
|
|
|
|
# Pecan Application Configurations
|
|
app = {
|
|
'root': 'inventory.api.controllers.root.RootController',
|
|
'modules': ['inventory.api'],
|
|
'hooks': [
|
|
hooks.DBHook(),
|
|
hooks.ContextHook(),
|
|
hooks.RPCHook(),
|
|
hooks.SystemConfigHook(),
|
|
],
|
|
'acl_public_routes': [
|
|
'/',
|
|
'/v1',
|
|
],
|
|
}
|
|
|
|
|
|
def init(args, **kwargs):
|
|
cfg.CONF.register_group(sysinv_group)
|
|
cfg.CONF.register_opts(sysinv_opts, group=sysinv_group)
|
|
ks_loading.register_session_conf_options(cfg.CONF,
|
|
sysinv_group.name)
|
|
logging.register_options(cfg.CONF)
|
|
|
|
cfg.CONF(args=args, project='inventory',
|
|
version='%%(prog)s %s' % version_info.release_string(),
|
|
**kwargs)
|
|
objects.register_all()
|
|
config.parse_args(args)
|
|
|
|
|
|
def setup_logging():
|
|
"""Sets up the logging options for a log with supplied name."""
|
|
logging.setup(cfg.CONF, "inventory")
|
|
LOG.debug("Logging enabled!")
|
|
LOG.debug("%(prog)s version %(version)s",
|
|
{'prog': sys.argv[0],
|
|
'version': version_info.release_string()})
|
|
LOG.debug("command line: %s", " ".join(sys.argv))
|