Controller service base

This patch introduces an eventlet-based Kuryr-Kubernetes controller service
base (based on oslo.service) and command-line launcher.

Change-Id: Idfd5efd71d9dd7cb184905dd487eea4ba33b029e
Partially-Implements: blueprint kuryr-k8s-integration
This commit is contained in:
Ilya Chukhnakov 2016-09-26 01:05:22 +03:00
parent d68a97fe47
commit 378e571dd4
13 changed files with 173 additions and 3 deletions

View File

View File

@ -0,0 +1,18 @@
# Copyright (c) 2016 Mirantis, Inc.
# 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.
import eventlet
eventlet.monkey_patch()

View File

@ -0,0 +1,22 @@
# Copyright (c) 2016 Mirantis, Inc.
# 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.
from kuryr_kubernetes.controller import service
start = service.start
if __name__ == '__main__':
start()

View File

View File

@ -0,0 +1,53 @@
# Copyright (c) 2016 Mirantis, Inc.
# 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.
import sys
from kuryr.lib._i18n import _LI
from oslo_log import log as logging
from oslo_service import service
from kuryr_kubernetes import clients
from kuryr_kubernetes import config
LOG = logging.getLogger(__name__)
class KuryrK8sService(service.Service):
"""Kuryr-Kubernetes controller Service."""
def __init__(self):
super(KuryrK8sService, self).__init__()
def start(self):
LOG.info(_LI("Service '%s' starting"), self.__class__.__name__)
super(KuryrK8sService, self).start()
LOG.info(_LI("Service '%s' started"), self.__class__.__name__)
def wait(self):
super(KuryrK8sService, self).wait()
LOG.info(_LI("Service '%s' stopped"), self.__class__.__name__)
def stop(self, graceful=False):
LOG.info(_LI("Service '%s' stopping"), self.__class__.__name__)
super(KuryrK8sService, self).stop(graceful)
def start():
config.init(sys.argv[1:])
config.setup_logging()
clients.setup_clients()
kuryrk8s_launcher = service.launch(config.CONF, KuryrK8sService())
kuryrk8s_launcher.wait()

View File

@ -0,0 +1,34 @@
# Copyright (c) 2016 Mirantis, Inc.
# 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.
import mock
from kuryr_kubernetes.tests import base as test_base
class TestControllerCmd(test_base.TestCase):
@mock.patch('kuryr_kubernetes.controller.service.start')
@mock.patch('eventlet.monkey_patch')
def test_start(self, m_evmp, m_start):
# NOTE(ivc): eventlet.monkey_patch is invoked during the module
# import, so the controller cmd has to be imported locally to verify
# that monkey_patch is called
from kuryr_kubernetes.cmd.eventlet import controller
controller.start()
m_evmp.assert_called()
m_start.assert_called()

View File

@ -0,0 +1,41 @@
# Copyright (c) 2016 Mirantis, Inc.
# 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.
import mock
from kuryr_kubernetes.controller import service
from kuryr_kubernetes.tests import base as test_base
class TestControllerService(test_base.TestCase):
@mock.patch('oslo_service.service.launch')
@mock.patch('kuryr_kubernetes.config.init')
@mock.patch('kuryr_kubernetes.config.setup_logging')
@mock.patch('kuryr_kubernetes.clients.setup_clients')
@mock.patch('kuryr_kubernetes.controller.service.KuryrK8sService')
def test_start(self, m_svc, m_setup_clients, m_setup_logging,
m_config_init, m_oslo_launch):
m_launcher = mock.Mock()
m_oslo_launch.return_value = m_launcher
service.start()
m_config_init.assert_called()
m_setup_logging.assert_called()
m_setup_clients.assert_called()
m_svc.assert_called()
m_oslo_launch.assert_called()
m_launcher.wait.assert_called()

View File

@ -5,9 +5,11 @@
-e git://github.com/openstack/kuryr.git@master#egg=kuryr_lib -e git://github.com/openstack/kuryr.git@master#egg=kuryr_lib
pbr>=1.6 # Apache-2.0 pbr>=1.6 # Apache-2.0
requests>=2.10.0 # Apache-2.0 requests>=2.10.0 # Apache-2.0
eventlet!=0.18.3,>=0.18.2 # MIT
oslo.config>=3.14.0 # Apache-2.0 oslo.config>=3.14.0 # Apache-2.0
oslo.i18n>=2.1.0 # Apache-2.0 oslo.i18n>=2.1.0 # Apache-2.0
oslo.log>=3.11.0 # Apache-2.0 oslo.log>=3.11.0 # Apache-2.0
oslo.serialization>=1.10.0 # Apache-2.0 oslo.serialization>=1.10.0 # Apache-2.0
oslo.service>=1.10.0 # Apache-2.0
oslo.utils>=3.16.0 # Apache-2.0 oslo.utils>=3.16.0 # Apache-2.0
six>=1.9.0 # MIT six>=1.9.0 # MIT

View File

@ -12,6 +12,6 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from kuryr_kubernetes import server from kuryr_kubernetes.cmd.eventlet import controller
server.start() controller.start()

View File

@ -22,7 +22,7 @@ oslo.config.opts =
kuryr_lib = kuryr.lib.opts:list_kuryr_opts kuryr_lib = kuryr.lib.opts:list_kuryr_opts
console_scripts = console_scripts =
kuryr-k8s = kuryr_kubernetes.server:start kuryr-k8s-controller = kuryr_kubernetes.cmd.eventlet.controller:start
[files] [files]
packages = packages =