blob: 35d3ac1b27131c67642bbf90cdb0cf2b07861c2c [file] [log] [blame]
Matteo Scandolo04287a82018-10-02 15:25:26 -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
Matteo Scandolo82026252019-06-20 12:11:45 -070020sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
Scott Baker47b47302019-01-30 16:55:07 -080021from xossynchronizer.event_steps.eventstep import EventStep
22from xossynchronizer.modelaccessor import VOLTService, VOLTServiceInstance, Service
Matteo Scandolo04287a82018-10-02 15:25:26 -070023from xosconfig import Config
24from multistructlog import create_logger
Matteo Scandolo82026252019-06-20 12:11:45 -070025from helpers import Helpers
Matteo Scandolo04287a82018-10-02 15:25:26 -070026
27log = create_logger(Config().get('logging'))
28
29class KubernetesPodDetailsEventStep(EventStep):
30 topics = ["xos.kubernetes.pod-details"]
31 technology = "kafka"
32
33 def __init__(self, *args, **kwargs):
34 super(KubernetesPodDetailsEventStep, self).__init__(*args, **kwargs)
35
Matteo Scandolo04287a82018-10-02 15:25:26 -070036 def process_event(self, event):
37 value = json.loads(event.value)
38
39 if (value.get("status") != "created"):
40 return
41
42 if "labels" not in value:
43 return
44
45 xos_service = value["labels"].get("xos_service")
46 if not xos_service:
47 return
48
49 for service in VOLTService.objects.all():
Matteo Scandolo82026252019-06-20 12:11:45 -070050 onos = Helpers.get_onos_service_name(service)
51 # NOTE do we really need to dynamically fetch the ONOS name?
52 if (onos.lower() != xos_service.lower()):
Matteo Scandolo04287a82018-10-02 15:25:26 -070053 continue
54
55 for service_instance in service.service_instances.all():
56 log.info("Dirtying VOLTServiceInstance", service_instance=service_instance)
57 service_instance.backend_code=0
58 service_instance.backend_status="resynchronize due to kubernetes event"
59 service_instance.save(update_fields=["updated", "backend_code", "backend_status"], always_update_timestamp=True)