blob: c692c4369c7bb90a14c4068edde8d803bf0a7510 [file] [log] [blame]
Scott Baker665b9362018-08-15 11:07:59 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
17import json
18import os
19import sys
20from synchronizers.new_base.eventstep import EventStep
21from synchronizers.new_base.modelaccessor import ONOSApp, ONOSService
22from xosconfig import Config
23from multistructlog import create_logger
24
25log = create_logger(Config().get('logging'))
26
27class KubernetesPodDetailsEventStep(EventStep):
28 topics = ["xos.kubernetes.pod-details"]
29 technology = "kafka"
30
31 def __init__(self, *args, **kwargs):
32 super(KubernetesPodDetailsEventStep, self).__init__(*args, **kwargs)
33
34 def process_event(self, event):
35 value = json.loads(event.value)
36
37 if (value.get("status") != "created"):
38 return
39
40 if "labels" not in value:
41 return
42
43 xos_service = value["labels"].get("xos_service")
44 if not xos_service:
45 return
46
47 for service in ONOSService.objects.filter(name = xos_service):
48 log.info("Dirtying ONOS Service", service=service)
49 service.backend_code=0
50 service.backend_status="resynchronize due to kubernetes event"
51 service.save(update_fields=["updated", "backend_code", "backend_status"], always_update_timestamp=True)
52
53 for app in service.service_instances.all():
54 log.info("Dirtying ONOS App", app=app)
55 app.backend_code=0
56 app.backend_status="resynchronize due to kubernetes event"
57 app.save(update_fields=["updated", "backend_code", "backend_status"], always_update_timestamp=True)