Scott Baker | 82b2b08 | 2018-04-16 16:02:14 -0700 | [diff] [blame] | 1 | |
| 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 | """ |
| 17 | kubernetes-synchronizer.py |
| 18 | |
| 19 | This is the main entrypoint for the synchronizer. It loads the config file, and then starts the synchronizer. |
| 20 | """ |
| 21 | |
Scott Baker | 82b2b08 | 2018-04-16 16:02:14 -0700 | [diff] [blame] | 22 | #!/usr/bin/env python |
| 23 | |
| 24 | # Runs the standard XOS synchronizer |
| 25 | |
| 26 | import importlib |
Scott Baker | 3fd18e5 | 2018-04-17 09:18:21 -0700 | [diff] [blame] | 27 | import logging |
Scott Baker | 82b2b08 | 2018-04-16 16:02:14 -0700 | [diff] [blame] | 28 | import os |
| 29 | import sys |
Scott Baker | a30fae7 | 2019-02-01 16:14:43 -0800 | [diff] [blame] | 30 | from xossynchronizer import Synchronizer |
Scott Baker | 82b2b08 | 2018-04-16 16:02:14 -0700 | [diff] [blame] | 31 | from xosconfig import Config |
| 32 | |
Scott Baker | 987748d | 2018-08-09 16:14:11 -0700 | [diff] [blame] | 33 | base_config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/config.yaml') |
| 34 | mounted_config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/mounted_config.yaml') |
| 35 | |
| 36 | if os.path.isfile(mounted_config_file): |
| 37 | Config.init(base_config_file, 'synchronizer-config-schema.yaml', mounted_config_file) |
| 38 | else: |
| 39 | Config.init(base_config_file, 'synchronizer-config-schema.yaml') |
Scott Baker | 82b2b08 | 2018-04-16 16:02:14 -0700 | [diff] [blame] | 40 | |
Zack Williams | 3dc9760 | 2018-09-13 22:33:26 -0700 | [diff] [blame] | 41 | from xoskafka import XOSKafkaProducer |
| 42 | |
Scott Baker | 3fd18e5 | 2018-04-17 09:18:21 -0700 | [diff] [blame] | 43 | # prevent logging noise from k8s API calls |
| 44 | logging.getLogger("kubernetes.client.rest").setLevel(logging.WARNING) |
| 45 | |
Zack Williams | 3dc9760 | 2018-09-13 22:33:26 -0700 | [diff] [blame] | 46 | # init kafka producer connection |
| 47 | XOSKafkaProducer.init() |
| 48 | |
Scott Baker | a30fae7 | 2019-02-01 16:14:43 -0800 | [diff] [blame] | 49 | Synchronizer().run() |