blob: d0df17975c855f2109fca1dd779406c1bd19c5d1 [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,
David Garcia141d9352021-09-08 17:48:40 +020035 PodRestartPolicy,
David Garcia49379ce2021-02-24 13:48:22 +010036 PodSpecV3Builder,
37)
David Garciac753dc52021-03-17 15:28:47 +010038from opslib.osm.validator import ModelValidator, validator
David Garcia49379ce2021-02-24 13:48:22 +010039
40
beierlma4a37f72020-06-26 12:55:01 -040041logger = logging.getLogger(__name__)
42
David Garcia49379ce2021-02-24 13:48:22 +010043PORT = 9999
beierlma4a37f72020-06-26 12:55:01 -040044
beierlma4a37f72020-06-26 12:55:01 -040045
David Garcia49379ce2021-02-24 13:48:22 +010046class ConfigModel(ModelValidator):
47 database_commonkey: str
sousaedu996a5602021-05-03 00:22:43 +020048 mongodb_uri: Optional[str]
David Garcia49379ce2021-02-24 13:48:22 +010049 log_level: str
sousaedu0dc25b32021-08-30 16:33:33 +010050 image_pull_policy: str
David Garcia49379ce2021-02-24 13:48:22 +010051
52 @validator("log_level")
53 def validate_log_level(cls, v):
54 if v not in {"INFO", "DEBUG"}:
55 raise ValueError("value must be INFO or DEBUG")
56 return v
57
sousaedu996a5602021-05-03 00:22:43 +020058 @validator("mongodb_uri")
59 def validate_mongodb_uri(cls, v):
60 if v and not v.startswith("mongodb://"):
61 raise ValueError("mongodb_uri is not properly formed")
62 return v
63
sousaedu3ddbbd12021-08-24 19:57:24 +010064 @validator("image_pull_policy")
65 def validate_image_pull_policy(cls, v):
66 values = {
67 "always": "Always",
68 "ifnotpresent": "IfNotPresent",
69 "never": "Never",
70 }
71 v = v.lower()
72 if v not in values.keys():
73 raise ValueError("value must be always, ifnotpresent or never")
74 return values[v]
75
David Garcia49379ce2021-02-24 13:48:22 +010076
77class PlaCharm(CharmedOsmBase):
David Garcia95ba7e12021-02-03 11:10:28 +010078 def __init__(self, *args) -> NoReturn:
David Garcia49379ce2021-02-24 13:48:22 +010079 super().__init__(*args, oci_image="image")
beierlma4a37f72020-06-26 12:55:01 -040080
David Garcia49379ce2021-02-24 13:48:22 +010081 self.kafka_client = KafkaClient(self, "kafka")
82 self.framework.observe(self.on["kafka"].relation_changed, self.configure_pod)
83 self.framework.observe(self.on["kafka"].relation_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040084
David Garcia49379ce2021-02-24 13:48:22 +010085 self.mongodb_client = MongoClient(self, "mongodb")
86 self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod)
87 self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040088
David Garcia49379ce2021-02-24 13:48:22 +010089 def _check_missing_dependencies(self, config: ConfigModel):
90 missing_relations = []
beierlma4a37f72020-06-26 12:55:01 -040091
David Garcia49379ce2021-02-24 13:48:22 +010092 if self.kafka_client.is_missing_data_in_unit():
93 missing_relations.append("kafka")
sousaedu996a5602021-05-03 00:22:43 +020094 if not config.mongodb_uri and self.mongodb_client.is_missing_data_in_unit():
David Garcia49379ce2021-02-24 13:48:22 +010095 missing_relations.append("mongodb")
beierlma4a37f72020-06-26 12:55:01 -040096
David Garcia49379ce2021-02-24 13:48:22 +010097 if missing_relations:
98 raise RelationsMissing(missing_relations)
beierlma4a37f72020-06-26 12:55:01 -040099
David Garcia49379ce2021-02-24 13:48:22 +0100100 def build_pod_spec(self, image_info):
101 # Validate config
102 config = ConfigModel(**dict(self.config))
sousaedu996a5602021-05-03 00:22:43 +0200103
104 if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit():
105 raise Exception("Mongodb data cannot be provided via config and relation")
106
David Garcia49379ce2021-02-24 13:48:22 +0100107 # Check relations
108 self._check_missing_dependencies(config)
sousaedu996a5602021-05-03 00:22:43 +0200109
David Garcia49379ce2021-02-24 13:48:22 +0100110 # Create Builder for the PodSpec
111 pod_spec_builder = PodSpecV3Builder()
sousaedu996a5602021-05-03 00:22:43 +0200112
David Garcia141d9352021-09-08 17:48:40 +0200113 # Add secrets to the pod
114 mongodb_secret_name = f"{self.app.name}-mongodb-secret"
115 pod_spec_builder.add_secret(
116 mongodb_secret_name,
117 {
118 "uri": config.mongodb_uri or self.mongodb_client.connection_string,
119 "commonkey": config.database_commonkey,
120 },
121 )
122
David Garcia49379ce2021-02-24 13:48:22 +0100123 # Build Container
sousaedu3ddbbd12021-08-24 19:57:24 +0100124 container_builder = ContainerV3Builder(
125 self.app.name, image_info, config.image_pull_policy
126 )
David Garcia49379ce2021-02-24 13:48:22 +0100127 container_builder.add_port(name=self.app.name, port=PORT)
128 container_builder.add_envs(
David Garciafa75eca2020-11-04 18:34:41 +0100129 {
David Garcia49379ce2021-02-24 13:48:22 +0100130 # General configuration
131 "ALLOW_ANONYMOUS_LOGIN": "yes",
132 "OSMPLA_GLOBAL_LOG_LEVEL": config.log_level,
133 # Kafka configuration
134 "OSMPLA_MESSAGE_DRIVER": "kafka",
135 "OSMPLA_MESSAGE_HOST": self.kafka_client.host,
136 "OSMPLA_MESSAGE_PORT": self.kafka_client.port,
137 # Database configuration
138 "OSMPLA_DATABASE_DRIVER": "mongo",
David Garcia49379ce2021-02-24 13:48:22 +0100139 }
140 )
beierlma4a37f72020-06-26 12:55:01 -0400141
David Garcia141d9352021-09-08 17:48:40 +0200142 container_builder.add_secret_envs(
143 secret_name=mongodb_secret_name,
144 envs={
145 "OSMPLA_DATABASE_URI": "uri",
146 "OSMPLA_DATABASE_COMMONKEY": "commonkey",
147 },
148 )
149
David Garcia49379ce2021-02-24 13:48:22 +0100150 container = container_builder.build()
sousaedu996a5602021-05-03 00:22:43 +0200151
David Garcia141d9352021-09-08 17:48:40 +0200152 # Add Pod restart policy
153 restart_policy = PodRestartPolicy()
154 restart_policy.add_secrets(secret_names=(mongodb_secret_name))
155 pod_spec_builder.set_restart_policy(restart_policy)
156
David Garcia49379ce2021-02-24 13:48:22 +0100157 # Add container to pod spec
158 pod_spec_builder.add_container(container)
sousaedu996a5602021-05-03 00:22:43 +0200159
David Garcia49379ce2021-02-24 13:48:22 +0100160 return pod_spec_builder.build()
beierlma4a37f72020-06-26 12:55:01 -0400161
162
163if __name__ == "__main__":
David Garcia49379ce2021-02-24 13:48:22 +0100164 main(PlaCharm)