
This patch introduces ControllerPipeline which is an entry point handler for the Kuryr-Kubernetes controller. ControllerPipeline allows registering ResourceEventHandlers and ensures the proper handler is called for each event that is passed to the ControllerPipeline. Also it ensures the following behavior: - multiple ResourceEventHandlers can be registered for the same resource type (OBJECT_KIND) - failing handlers (i.e. ones that raise Exceptions) are retried until either the handler succeeds or a finite amount of time passes, in which case the most recent exception is logged - in case there are multiple handlers registered for the same resource type, all such handlers are considered independent (i.e. if one handler fails, other handlers will still be called regardless; and the order in which such handlers are called is not determined) - events for different Kubernetes objects can be handled concurrently - events for the same Kubernetes object are handled sequentially in the order of arrival Change-Id: Ib17e0c7a2790cdbc31be4f59d50972b43c272480 Partially-Implements: blueprint kuryr-k8s-integration
106 lines
3.7 KiB
Python
106 lines
3.7 KiB
Python
# 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, _LE
|
|
from oslo_log import log as logging
|
|
from oslo_service import service
|
|
|
|
from kuryr_kubernetes import clients
|
|
from kuryr_kubernetes import config
|
|
from kuryr_kubernetes import constants
|
|
from kuryr_kubernetes.controller.handlers import pipeline as h_pipeline
|
|
from kuryr_kubernetes.handlers import k8s_base as h_k8s
|
|
from kuryr_kubernetes import watcher
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class KuryrK8sService(service.Service):
|
|
"""Kuryr-Kubernetes controller Service."""
|
|
|
|
def __init__(self):
|
|
super(KuryrK8sService, self).__init__()
|
|
|
|
class DummyHandler(h_k8s.ResourceEventHandler):
|
|
# TODO(ivc): remove once real handlers are ready
|
|
|
|
def __init__(self):
|
|
self.event_seq = 0
|
|
|
|
def __call__(self, event):
|
|
self.event_seq += 1
|
|
if self.event_seq % 4:
|
|
raise Exception(_LE("Dummy exception %s") % self.event_seq)
|
|
super(DummyHandler, self).__call__(event)
|
|
|
|
def on_added(self, event):
|
|
LOG.debug("added: %s",
|
|
event['object']['metadata']['selfLink'])
|
|
|
|
def on_deleted(self, event):
|
|
LOG.debug("deleted: %s",
|
|
event['object']['metadata']['selfLink'])
|
|
|
|
def on_modified(self, event):
|
|
LOG.debug("modified: %s",
|
|
event['object']['metadata']['selfLink'])
|
|
|
|
def on_present(self, event):
|
|
LOG.debug("present: %s",
|
|
event['object']['metadata']['selfLink'])
|
|
|
|
class DummyPodHandler(DummyHandler):
|
|
OBJECT_KIND = constants.K8S_OBJ_POD
|
|
|
|
class DummyServiceHandler(DummyHandler):
|
|
OBJECT_KIND = constants.K8S_OBJ_SERVICE
|
|
|
|
class DummyEndpointsHandler(DummyHandler):
|
|
OBJECT_KIND = constants.K8S_OBJ_ENDPOINTS
|
|
|
|
pipeline = h_pipeline.ControllerPipeline(self.tg)
|
|
self.watcher = watcher.Watcher(pipeline, self.tg)
|
|
# TODO(ivc): pluggable resource/handler registration
|
|
for resource in ["pods", "services", "endpoints"]:
|
|
self.watcher.add("%s/%s" % (constants.K8S_API_BASE, resource))
|
|
pipeline.register(DummyPodHandler())
|
|
pipeline.register(DummyServiceHandler())
|
|
pipeline.register(DummyEndpointsHandler())
|
|
|
|
def start(self):
|
|
LOG.info(_LI("Service '%s' starting"), self.__class__.__name__)
|
|
super(KuryrK8sService, self).start()
|
|
self.watcher.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__)
|
|
self.watcher.stop()
|
|
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()
|