blob: ce1a25e54995dd43c13c981e2814fbe38713e027 [file] [log] [blame]
sousaeducab58cb2020-11-04 18:48:17 +00001#!/usr/bin/env python3
David Garcia49379ce2021-02-24 13:48:22 +01002# Copyright 2021 Canonical Ltd.
sousaeducab58cb2020-11-04 18:48:17 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# 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, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15#
16# For those usages not covered by the Apache License, Version 2.0 please
17# contact: legal@canonical.com
18#
19# To get in touch with the maintainers, please contact:
20# osm-charmers@lists.launchpad.net
21##
22
David Garcia49379ce2021-02-24 13:48:22 +010023# pylint: disable=E0213
24
25
sousaeducab58cb2020-11-04 18:48:17 +000026import logging
David Garcia49379ce2021-02-24 13:48:22 +010027from typing import NoReturn
sousaeducab58cb2020-11-04 18:48:17 +000028
sousaeducab58cb2020-11-04 18:48:17 +000029from ops.main import main
sousaeducab58cb2020-11-04 18:48:17 +000030
David Garcia49379ce2021-02-24 13:48:22 +010031from opslib.osm.charm import CharmedOsmBase, RelationsMissing
32
33from opslib.osm.pod import (
34 ContainerV3Builder,
35 PodSpecV3Builder,
36)
37
38from opslib.osm.validator import (
39 ModelValidator,
40 validator,
41)
42
43from opslib.osm.interfaces.kafka import KafkaClient
44from opslib.osm.interfaces.mongo import MongoClient
45
sousaeducab58cb2020-11-04 18:48:17 +000046
47logger = logging.getLogger(__name__)
48
David Garcia49379ce2021-02-24 13:48:22 +010049PORT = 9999
sousaeducab58cb2020-11-04 18:48:17 +000050
51
David Garcia49379ce2021-02-24 13:48:22 +010052class ConfigModel(ModelValidator):
53 log_level: str
sousaeducab58cb2020-11-04 18:48:17 +000054
David Garcia49379ce2021-02-24 13:48:22 +010055 @validator("log_level")
56 def validate_log_level(cls, v):
57 if v not in {"INFO", "DEBUG"}:
58 raise ValueError("value must be INFO or DEBUG")
59 return v
sousaeducab58cb2020-11-04 18:48:17 +000060
61
David Garcia49379ce2021-02-24 13:48:22 +010062class PolCharm(CharmedOsmBase):
sousaeducab58cb2020-11-04 18:48:17 +000063 def __init__(self, *args) -> NoReturn:
David Garcia49379ce2021-02-24 13:48:22 +010064 super().__init__(*args, oci_image="image")
sousaeducab58cb2020-11-04 18:48:17 +000065
David Garcia49379ce2021-02-24 13:48:22 +010066 self.kafka_client = KafkaClient(self, "kafka")
67 self.framework.observe(self.on["kafka"].relation_changed, self.configure_pod)
68 self.framework.observe(self.on["kafka"].relation_broken, self.configure_pod)
sousaeducab58cb2020-11-04 18:48:17 +000069
David Garcia49379ce2021-02-24 13:48:22 +010070 self.mongodb_client = MongoClient(self, "mongodb")
71 self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod)
72 self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod)
sousaeducab58cb2020-11-04 18:48:17 +000073
David Garcia49379ce2021-02-24 13:48:22 +010074 def _check_missing_dependencies(self, config: ConfigModel):
75 missing_relations = []
sousaeducab58cb2020-11-04 18:48:17 +000076
David Garcia49379ce2021-02-24 13:48:22 +010077 if self.kafka_client.is_missing_data_in_unit():
78 missing_relations.append("kafka")
79 if self.mongodb_client.is_missing_data_in_unit():
80 missing_relations.append("mongodb")
sousaeducab58cb2020-11-04 18:48:17 +000081
David Garcia49379ce2021-02-24 13:48:22 +010082 if missing_relations:
83 raise RelationsMissing(missing_relations)
sousaeducab58cb2020-11-04 18:48:17 +000084
David Garcia49379ce2021-02-24 13:48:22 +010085 def build_pod_spec(self, image_info):
86 # Validate config
87 config = ConfigModel(**dict(self.config))
88 # Check relations
89 self._check_missing_dependencies(config)
90 # Create Builder for the PodSpec
91 pod_spec_builder = PodSpecV3Builder()
92 # Build Container
93 container_builder = ContainerV3Builder(self.app.name, image_info)
94 container_builder.add_port(name=self.app.name, port=PORT)
95 container_builder.add_envs(
96 {
97 # General configuration
98 "ALLOW_ANONYMOUS_LOGIN": "yes",
99 "OSMPOL_GLOBAL_LOGLEVEL": config.log_level,
100 # Kafka configuration
101 "OSMPOL_MESSAGE_DRIVER": "kafka",
102 "OSMPOL_MESSAGE_HOST": self.kafka_client.host,
103 "OSMPOL_MESSAGE_PORT": self.kafka_client.port,
104 # Database configuration
105 "OSMPOL_DATABASE_DRIVER": "mongo",
106 "OSMPOL_DATABASE_URI": self.mongodb_client.connection_string,
107 }
sousaeducab58cb2020-11-04 18:48:17 +0000108 )
109
David Garcia49379ce2021-02-24 13:48:22 +0100110 container = container_builder.build()
111 # Add container to pod spec
112 pod_spec_builder.add_container(container)
113 return pod_spec_builder.build()
sousaeducab58cb2020-11-04 18:48:17 +0000114
115
116if __name__ == "__main__":
117 main(PolCharm)