blob: 15ae0958fa70b863049dfd5c0ccf66d8023ce3a3 [file] [log] [blame]
beierlma4a37f72020-06-26 12:55:01 -04001#!/usr/bin/env python3
David Garcia49379ce2021-02-24 13:48:22 +01002# Copyright 2021 Canonical Ltd.
beierlma4a37f72020-06-26 12:55:01 -04003#
David Garcia49379ce2021-02-24 13:48:22 +01004# 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
beierlma4a37f72020-06-26 12:55:01 -04007#
David Garcia49379ce2021-02-24 13:48:22 +01008# http://www.apache.org/licenses/LICENSE-2.0
beierlma4a37f72020-06-26 12:55:01 -04009#
David Garcia49379ce2021-02-24 13:48:22 +010010# 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
23# pylint: disable=E0213
24
beierlma4a37f72020-06-26 12:55:01 -040025
beierlma4a37f72020-06-26 12:55:01 -040026import logging
David Garcia95ba7e12021-02-03 11:10:28 +010027from typing import NoReturn
beierlmb1a1c462020-10-23 14:54:56 -040028
David Garcia49379ce2021-02-24 13:48:22 +010029from ops.main import main
David Garcia49379ce2021-02-24 13:48:22 +010030from opslib.osm.charm import CharmedOsmBase, RelationsMissing
David Garciac753dc52021-03-17 15:28:47 +010031from opslib.osm.interfaces.kafka import KafkaClient
32from opslib.osm.interfaces.mongo import MongoClient
David Garcia49379ce2021-02-24 13:48:22 +010033from opslib.osm.pod import (
34 ContainerV3Builder,
35 PodSpecV3Builder,
36)
David Garciac753dc52021-03-17 15:28:47 +010037from opslib.osm.validator import ModelValidator, validator
David Garcia49379ce2021-02-24 13:48:22 +010038
39
beierlma4a37f72020-06-26 12:55:01 -040040logger = logging.getLogger(__name__)
41
David Garcia49379ce2021-02-24 13:48:22 +010042PORT = 9999
beierlma4a37f72020-06-26 12:55:01 -040043
beierlma4a37f72020-06-26 12:55:01 -040044
David Garcia49379ce2021-02-24 13:48:22 +010045class ConfigModel(ModelValidator):
46 database_commonkey: str
47 log_level: str
48
49 @validator("log_level")
50 def validate_log_level(cls, v):
51 if v not in {"INFO", "DEBUG"}:
52 raise ValueError("value must be INFO or DEBUG")
53 return v
54
55
56class PlaCharm(CharmedOsmBase):
David Garcia95ba7e12021-02-03 11:10:28 +010057 def __init__(self, *args) -> NoReturn:
David Garcia49379ce2021-02-24 13:48:22 +010058 super().__init__(*args, oci_image="image")
beierlma4a37f72020-06-26 12:55:01 -040059
David Garcia49379ce2021-02-24 13:48:22 +010060 self.kafka_client = KafkaClient(self, "kafka")
61 self.framework.observe(self.on["kafka"].relation_changed, self.configure_pod)
62 self.framework.observe(self.on["kafka"].relation_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040063
David Garcia49379ce2021-02-24 13:48:22 +010064 self.mongodb_client = MongoClient(self, "mongodb")
65 self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod)
66 self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040067
David Garcia49379ce2021-02-24 13:48:22 +010068 def _check_missing_dependencies(self, config: ConfigModel):
69 missing_relations = []
beierlma4a37f72020-06-26 12:55:01 -040070
David Garcia49379ce2021-02-24 13:48:22 +010071 if self.kafka_client.is_missing_data_in_unit():
72 missing_relations.append("kafka")
73 if self.mongodb_client.is_missing_data_in_unit():
74 missing_relations.append("mongodb")
beierlma4a37f72020-06-26 12:55:01 -040075
David Garcia49379ce2021-02-24 13:48:22 +010076 if missing_relations:
77 raise RelationsMissing(missing_relations)
beierlma4a37f72020-06-26 12:55:01 -040078
David Garcia49379ce2021-02-24 13:48:22 +010079 def build_pod_spec(self, image_info):
80 # Validate config
81 config = ConfigModel(**dict(self.config))
82 # Check relations
83 self._check_missing_dependencies(config)
84 # Create Builder for the PodSpec
85 pod_spec_builder = PodSpecV3Builder()
86 # Build Container
87 container_builder = ContainerV3Builder(self.app.name, image_info)
88 container_builder.add_port(name=self.app.name, port=PORT)
89 container_builder.add_envs(
David Garciafa75eca2020-11-04 18:34:41 +010090 {
David Garcia49379ce2021-02-24 13:48:22 +010091 # General configuration
92 "ALLOW_ANONYMOUS_LOGIN": "yes",
93 "OSMPLA_GLOBAL_LOG_LEVEL": config.log_level,
94 # Kafka configuration
95 "OSMPLA_MESSAGE_DRIVER": "kafka",
96 "OSMPLA_MESSAGE_HOST": self.kafka_client.host,
97 "OSMPLA_MESSAGE_PORT": self.kafka_client.port,
98 # Database configuration
99 "OSMPLA_DATABASE_DRIVER": "mongo",
100 "OSMPLA_DATABASE_URI": self.mongodb_client.connection_string,
101 "OSMPLA_DATABASE_COMMONKEY": config.database_commonkey,
102 }
103 )
beierlma4a37f72020-06-26 12:55:01 -0400104
David Garcia49379ce2021-02-24 13:48:22 +0100105 container = container_builder.build()
106 # Add container to pod spec
107 pod_spec_builder.add_container(container)
108 return pod_spec_builder.build()
beierlma4a37f72020-06-26 12:55:01 -0400109
110
111if __name__ == "__main__":
David Garcia49379ce2021-02-24 13:48:22 +0100112 main(PlaCharm)