
sysinv files were being imported to provide authentication features like policy enforcement and request contexts. Those are now replaced with oslo imports. Test Plan: (Debian) PASS: AIO-DX bootstrap/unlock PASS: CLI upload/apply/host-install RR patch PASS: Horizon patching operations work PASS: NFV patching operations work PASS: no (new) errors in patching logs Story: 2009969 Task: 45998 Signed-off-by: Al Bailey <al.bailey@windriver.com> Change-Id: I15d80441201755673f827529469a7f4feaa7f0ee
24 lines
492 B
Python
24 lines
492 B
Python
"""
|
|
Copyright (c) 2022 Wind River Systems, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
"""
|
|
|
|
# Server Specific Configurations
|
|
server = {
|
|
'port': '5487',
|
|
'host': '127.0.0.1'
|
|
}
|
|
|
|
# Pecan Application Configurations
|
|
app = {
|
|
'root': 'cgcs_patch.api.controllers.root.RootController',
|
|
'modules': ['cgcs_patch.authapi'],
|
|
'static_root': '%(confdir)s/public',
|
|
'template_path': '%(confdir)s/../templates',
|
|
'debug': False,
|
|
'enable_acl': False,
|
|
'acl_public_routes': [],
|
|
}
|