This patchset introduces the use of oslo.service to run the Watcher API service. Change-Id: I6c38a3c1a2b4dc47388876e4c0ba61b7447690bd Related-Bug: #1541850
56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
# 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.
|
|
|
|
"""Starter script for the Watcher API service."""
|
|
|
|
import sys
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
from oslo_reports import guru_meditation_report as gmr
|
|
|
|
from watcher._i18n import _
|
|
from watcher.common import service
|
|
from watcher import version
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
CONF = cfg.CONF
|
|
|
|
|
|
def main():
|
|
service.prepare_service(sys.argv)
|
|
|
|
gmr.TextGuruMeditation.setup_autorun(version)
|
|
|
|
host, port = cfg.CONF.api.host, cfg.CONF.api.port
|
|
# Build and start the WSGI app
|
|
server = service.WSGIService(
|
|
'watcher-api', CONF.api.enable_ssl_api)
|
|
|
|
if host == '0.0.0.0':
|
|
LOG.info(_('serving on 0.0.0.0:%(port)s, '
|
|
'view at http://127.0.0.1:%(port)s') %
|
|
dict(port=port))
|
|
else:
|
|
LOG.info(_('serving on http://%(host)s:%(port)s') %
|
|
dict(host=host, port=port))
|
|
|
|
launcher = service.process_launcher()
|
|
launcher.launch_service(server, workers=server.workers)
|
|
launcher.wait()
|