
Ranger region now includes a field which declares which openstack domain a resource should be deployed in. This change updates rds to create resources in that domain via the heat template Change-Id: I43144eb75a34661fae15399b9d32842d65327621
75 lines
1.8 KiB
Python
Executable File
75 lines
1.8 KiB
Python
Executable File
import orm.base_config as config
|
|
from orm.common.orm_common.hooks.api_error_hook import APIErrorHook
|
|
from orm.common.orm_common.hooks.security_headers_hook import SecurityHeadersHook
|
|
from orm.common.orm_common.hooks.transaction_id_hook import TransactionIdHook
|
|
global TransactionIdHook
|
|
global APIErrorHook
|
|
global SecurityHeadersHook
|
|
|
|
# Server Specific Configurations
|
|
server = {
|
|
'port': config.cms['port'],
|
|
'host': config.orm_host,
|
|
'name': 'cms',
|
|
'host_ip': config.orm_host
|
|
}
|
|
|
|
# Pecan Application Configurations
|
|
|
|
|
|
rds = {
|
|
'customer_domain': config.rds['customer_domain']
|
|
}
|
|
|
|
app = {
|
|
'root': 'orm.services.customer_manager.cms_rest.controllers.root.RootController',
|
|
'modules': ['orm.services.customer_manager.cms_rest'],
|
|
'debug': config.pecan_debug,
|
|
'hooks': lambda: [TransactionIdHook(), APIErrorHook(), SecurityHeadersHook()]
|
|
}
|
|
|
|
app_module = app['modules'][0]
|
|
logging = config.get_log_config(config.cms['log'], server['name'], app_module)
|
|
|
|
quotas_default_values = {
|
|
'compute': {
|
|
'vcpus': '20',
|
|
'metadata_items': '128'
|
|
},
|
|
'network': {
|
|
'security_groups': '10',
|
|
'security_group_rules': '20'
|
|
}
|
|
}
|
|
|
|
# DB configurations
|
|
database = {
|
|
'connection_string': config.db_connect
|
|
}
|
|
|
|
api = {
|
|
'uuid_server': {
|
|
'base': config.uuid['base_url'],
|
|
'uuids': 'v1/uuids'
|
|
},
|
|
'rds_server': {
|
|
'base': config.rds['base_url'],
|
|
'resources': 'v1/rds/resources',
|
|
'status': 'v1/rds/status/resource/'
|
|
},
|
|
'rms_server': {
|
|
'base': config.rms['base_url'],
|
|
'regions': 'v2/orm/regions',
|
|
'groups': 'v2/orm/groups',
|
|
'cache_seconds': 30
|
|
},
|
|
'audit_server': {
|
|
'base': config.audit_server['base_url'],
|
|
'trans': 'v1/audit/transaction'
|
|
}
|
|
}
|
|
|
|
verify = config.ssl_verify
|
|
|
|
authentication = config.server_request_auth(server['name'])
|