180f68eac8
1. What is the problem? Networking related code is still in the repository of the Trio2o project. 2. What is the solution to the problem? According to the blueprint for the Trio2o cleaning: https://blueprints.launchpad.net/trio2o/+spec/trio2o-code-cleaning Networking related code which is forked from the Tricircle repository should be removed from the Trio2o repository. After the cleanning, the Trio2o should be able to run independently. There are lots of things to clean and update, and have to do it in one huge patch, otherwise the code in Trio2o will not be able to run and tested properply: 1). Remove netwoking operaion from server controller 2). Update devstack script 3). Update installation guide 4). Update README 5). Remove network folder and network related unit tests 6). Rename Tricircle to Trio2o in all source code THE MEANING OF FILE OPERATION: D: delete a file R: rename a file to another name A: add a new file C: copy a file 3. What the features need to be implemented to the Tricircle to realize the solution? No new features. Change-Id: I0b48ee38280e25ba6294ca3d5b7a0673cb368ed4 Signed-off-by: joehuang <joehuang@huawei.com>
69 lines
1.9 KiB
Python
69 lines
1.9 KiB
Python
# Copyright 2015 Huawei Technologies Co., Ltd.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# Much of this module is based on the work of the Ironic team
|
|
# see http://git.openstack.org/cgit/openstack/ironic/tree/ironic/cmd/api.py
|
|
|
|
import eventlet
|
|
|
|
if __name__ == "__main__":
|
|
eventlet.monkey_patch()
|
|
|
|
import logging as std_logging
|
|
import sys
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
from oslo_service import wsgi
|
|
|
|
from trio2o.common import config
|
|
from trio2o.common.i18n import _LI
|
|
from trio2o.common.i18n import _LW
|
|
from trio2o.common import restapp
|
|
|
|
from trio2o.nova_apigw import app
|
|
|
|
CONF = cfg.CONF
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def main():
|
|
config.init(app.common_opts, sys.argv[1:])
|
|
application = app.setup_app()
|
|
|
|
host = CONF.bind_host
|
|
port = CONF.bind_port
|
|
workers = CONF.api_workers
|
|
|
|
if workers < 1:
|
|
LOG.warning(_LW("Wrong worker number, worker = %(workers)s"), workers)
|
|
workers = 1
|
|
|
|
LOG.info(_LI("Nova_APIGW on http://%(host)s:%(port)s with %(workers)s"),
|
|
{'host': host, 'port': port, 'workers': workers})
|
|
|
|
service = wsgi.Server(CONF, 'Trio2o Nova_APIGW',
|
|
application, host, port)
|
|
restapp.serve(service, CONF, workers)
|
|
|
|
LOG.info(_LI("Configuration:"))
|
|
CONF.log_opt_values(LOG, std_logging.INFO)
|
|
|
|
restapp.wait()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|