
Change the client to use Pod IP instead of host alias to talk to notification services Refactor client according to Single Responsibility Principle: 1,extract broker state management logic from daemon module to broker_state_manager 2,extract broker connection management logic from daemon module to broker_connection_manager 3,extract notification handling logic from daemon module to notification_handler 4,move NotificationWorker from daemon module to notification_worker module 5,change broker endpoint from host alias to IP which removes dependency to /etc/hosts 6,add logic to re-setup the broker connection in case of notificationservice pod IP changes Partial-Bug: 1924198 Signed-off-by: Bin Yang <bin.yang@windriver.com> Change-Id: Ifc9a16912f5ccebe0426a0d4e72c0f13dcbabcd7
76 lines
2.1 KiB
Python
76 lines
2.1 KiB
Python
#
|
|
# Copyright (c) 2021 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
import os
|
|
SIDECAR_API_PORT = os.environ.get("SIDECAR_API_PORT", "8080")
|
|
SIDECAR_API_HOST = os.environ.get("SIDECAR_API_HOST", "127.0.0.1")
|
|
DATASTORE_PATH = os.environ.get("DATASTORE_PATH", "/opt/datastore")
|
|
LOGGING_LEVEL = os.environ.get("LOGGING_LEVEL", "INFO")
|
|
|
|
# Server Specific Configurations
|
|
server = {
|
|
'port': SIDECAR_API_PORT,
|
|
'host': SIDECAR_API_HOST
|
|
}
|
|
|
|
# Pecan Application Configurations
|
|
app = {
|
|
'root': 'sidecar.controllers.root.RootController',
|
|
'modules': ['sidecar'],
|
|
'static_root': '%(confdir)s/public',
|
|
'template_path': '%(confdir)s/sidecar/templates',
|
|
'debug': True,
|
|
'errors': {
|
|
404: '/error/404',
|
|
'__force_dict__': True
|
|
}
|
|
}
|
|
|
|
logging = {
|
|
'root': {'level': 'INFO', 'handlers': ['console']},
|
|
'loggers': {
|
|
'sidecar': {'level': LOGGING_LEVEL, 'handlers': ['console'], 'propagate': False},
|
|
'pecan': {'level': LOGGING_LEVEL, 'handlers': ['console'], 'propagate': False},
|
|
'py.warnings': {'handlers': ['console']},
|
|
'__force_dict__': True
|
|
},
|
|
'handlers': {
|
|
'console': {
|
|
'level': LOGGING_LEVEL,
|
|
'class': 'logging.StreamHandler',
|
|
'formatter': 'color'
|
|
}
|
|
},
|
|
'formatters': {
|
|
'simple': {
|
|
'format': ('%(asctime)s %(levelname)-5.5s [%(name)s]'
|
|
'[%(threadName)s] %(message)s')
|
|
},
|
|
'color': {
|
|
'()': 'pecan.log.ColorFormatter',
|
|
'format': ('%(asctime)s [%(padded_color_levelname)s] [%(name)s]'
|
|
'[%(threadName)s] %(message)s'),
|
|
'__force_dict__': True
|
|
}
|
|
}
|
|
}
|
|
|
|
# Bindings and options to pass to SQLAlchemy's ``create_engine``
|
|
sqlalchemy = {
|
|
'url' : "sqlite:////{0}/sidecar.db".format(DATASTORE_PATH),
|
|
'echo' : False,
|
|
'echo_pool' : False,
|
|
'pool_recycle' : 3600,
|
|
'encoding' : 'utf-8'
|
|
}
|
|
|
|
# Custom Configurations must be in Python dictionary format::
|
|
#
|
|
# foo = {'bar':'baz'}
|
|
#
|
|
# All configurations are accessible at::
|
|
# pecan.conf
|