blob: 2a08ea59ffaea6c9774d8c5220baa45db922f9b1 [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
sousaedu996a5602021-05-03 00:22:43 +020027from typing import NoReturn, Optional
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
sousaedu996a5602021-05-03 00:22:43 +020047 mongodb_uri: Optional[str]
David Garcia49379ce2021-02-24 13:48:22 +010048 log_level: str
sousaedu3ddbbd12021-08-24 19:57:24 +010049 image_pull_policy: Optional[str]
David Garcia49379ce2021-02-24 13:48:22 +010050
51 @validator("log_level")
52 def validate_log_level(cls, v):
53 if v not in {"INFO", "DEBUG"}:
54 raise ValueError("value must be INFO or DEBUG")
55 return v
56
sousaedu996a5602021-05-03 00:22:43 +020057 @validator("mongodb_uri")
58 def validate_mongodb_uri(cls, v):
59 if v and not v.startswith("mongodb://"):
60 raise ValueError("mongodb_uri is not properly formed")
61 return v
62
sousaedu3ddbbd12021-08-24 19:57:24 +010063 @validator("image_pull_policy")
64 def validate_image_pull_policy(cls, v):
65 values = {
66 "always": "Always",
67 "ifnotpresent": "IfNotPresent",
68 "never": "Never",
69 }
70 v = v.lower()
71 if v not in values.keys():
72 raise ValueError("value must be always, ifnotpresent or never")
73 return values[v]
74
David Garcia49379ce2021-02-24 13:48:22 +010075
76class PlaCharm(CharmedOsmBase):
David Garcia95ba7e12021-02-03 11:10:28 +010077 def __init__(self, *args) -> NoReturn:
David Garcia49379ce2021-02-24 13:48:22 +010078 super().__init__(*args, oci_image="image")
beierlma4a37f72020-06-26 12:55:01 -040079
David Garcia49379ce2021-02-24 13:48:22 +010080 self.kafka_client = KafkaClient(self, "kafka")
81 self.framework.observe(self.on["kafka"].relation_changed, self.configure_pod)
82 self.framework.observe(self.on["kafka"].relation_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040083
David Garcia49379ce2021-02-24 13:48:22 +010084 self.mongodb_client = MongoClient(self, "mongodb")
85 self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod)
86 self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040087
David Garcia49379ce2021-02-24 13:48:22 +010088 def _check_missing_dependencies(self, config: ConfigModel):
89 missing_relations = []
beierlma4a37f72020-06-26 12:55:01 -040090
David Garcia49379ce2021-02-24 13:48:22 +010091 if self.kafka_client.is_missing_data_in_unit():
92 missing_relations.append("kafka")
sousaedu996a5602021-05-03 00:22:43 +020093 if not config.mongodb_uri and self.mongodb_client.is_missing_data_in_unit():
David Garcia49379ce2021-02-24 13:48:22 +010094 missing_relations.append("mongodb")
beierlma4a37f72020-06-26 12:55:01 -040095
David Garcia49379ce2021-02-24 13:48:22 +010096 if missing_relations:
97 raise RelationsMissing(missing_relations)
beierlma4a37f72020-06-26 12:55:01 -040098
David Garcia49379ce2021-02-24 13:48:22 +010099 def build_pod_spec(self, image_info):
100 # Validate config
101 config = ConfigModel(**dict(self.config))
sousaedu996a5602021-05-03 00:22:43 +0200102
103 if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit():
104 raise Exception("Mongodb data cannot be provided via config and relation")
105
David Garcia49379ce2021-02-24 13:48:22 +0100106 # Check relations
107 self._check_missing_dependencies(config)
sousaedu996a5602021-05-03 00:22:43 +0200108
David Garcia49379ce2021-02-24 13:48:22 +0100109 # Create Builder for the PodSpec
110 pod_spec_builder = PodSpecV3Builder()
sousaedu996a5602021-05-03 00:22:43 +0200111
David Garcia49379ce2021-02-24 13:48:22 +0100112 # Build Container
sousaedu3ddbbd12021-08-24 19:57:24 +0100113 container_builder = ContainerV3Builder(
114 self.app.name, image_info, config.image_pull_policy
115 )
David Garcia49379ce2021-02-24 13:48:22 +0100116 container_builder.add_port(name=self.app.name, port=PORT)
117 container_builder.add_envs(
David Garciafa75eca2020-11-04 18:34:41 +0100118 {
David Garcia49379ce2021-02-24 13:48:22 +0100119 # General configuration
120 "ALLOW_ANONYMOUS_LOGIN": "yes",
121 "OSMPLA_GLOBAL_LOG_LEVEL": config.log_level,
122 # Kafka configuration
123 "OSMPLA_MESSAGE_DRIVER": "kafka",
124 "OSMPLA_MESSAGE_HOST": self.kafka_client.host,
125 "OSMPLA_MESSAGE_PORT": self.kafka_client.port,
126 # Database configuration
127 "OSMPLA_DATABASE_DRIVER": "mongo",
sousaedu996a5602021-05-03 00:22:43 +0200128 "OSMPLA_DATABASE_URI": config.mongodb_uri
129 or self.mongodb_client.connection_string,
David Garcia49379ce2021-02-24 13:48:22 +0100130 "OSMPLA_DATABASE_COMMONKEY": config.database_commonkey,
131 }
132 )
beierlma4a37f72020-06-26 12:55:01 -0400133
David Garcia49379ce2021-02-24 13:48:22 +0100134 container = container_builder.build()
sousaedu996a5602021-05-03 00:22:43 +0200135
David Garcia49379ce2021-02-24 13:48:22 +0100136 # Add container to pod spec
137 pod_spec_builder.add_container(container)
sousaedu996a5602021-05-03 00:22:43 +0200138
David Garcia49379ce2021-02-24 13:48:22 +0100139 return pod_spec_builder.build()
beierlma4a37f72020-06-26 12:55:01 -0400140
141
142if __name__ == "__main__":
David Garcia49379ce2021-02-24 13:48:22 +0100143 main(PlaCharm)