blob: d907f0bcbce2115756af473d292d660e8c3fb547 [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 Garcia4a0db7c2022-02-21 11:48:11 +010029from charms.kafka_k8s.v0.kafka import KafkaEvents, KafkaRequires
David Garcia49379ce2021-02-24 13:48:22 +010030from ops.main import main
David Garcia49379ce2021-02-24 13:48:22 +010031from opslib.osm.charm import CharmedOsmBase, RelationsMissing
David Garciac753dc52021-03-17 15:28:47 +010032from 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
sousaedu540d9372021-09-29 01:53:30 +010051 security_context: bool
David Garcia49379ce2021-02-24 13:48:22 +010052
53 @validator("log_level")
54 def validate_log_level(cls, v):
55 if v not in {"INFO", "DEBUG"}:
56 raise ValueError("value must be INFO or DEBUG")
57 return v
58
sousaedu996a5602021-05-03 00:22:43 +020059 @validator("mongodb_uri")
60 def validate_mongodb_uri(cls, v):
61 if v and not v.startswith("mongodb://"):
62 raise ValueError("mongodb_uri is not properly formed")
63 return v
64
sousaedu3ddbbd12021-08-24 19:57:24 +010065 @validator("image_pull_policy")
66 def validate_image_pull_policy(cls, v):
67 values = {
68 "always": "Always",
69 "ifnotpresent": "IfNotPresent",
70 "never": "Never",
71 }
72 v = v.lower()
73 if v not in values.keys():
74 raise ValueError("value must be always, ifnotpresent or never")
75 return values[v]
76
David Garcia49379ce2021-02-24 13:48:22 +010077
78class PlaCharm(CharmedOsmBase):
David Garcia4a0db7c2022-02-21 11:48:11 +010079 on = KafkaEvents()
80
David Garcia95ba7e12021-02-03 11:10:28 +010081 def __init__(self, *args) -> NoReturn:
David Garcia49379ce2021-02-24 13:48:22 +010082 super().__init__(*args, oci_image="image")
beierlma4a37f72020-06-26 12:55:01 -040083
David Garcia4a0db7c2022-02-21 11:48:11 +010084 self.kafka = KafkaRequires(self)
85 self.framework.observe(self.on.kafka_available, self.configure_pod)
86 self.framework.observe(self.on.kafka_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040087
David Garcia49379ce2021-02-24 13:48:22 +010088 self.mongodb_client = MongoClient(self, "mongodb")
89 self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod)
90 self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod)
beierlma4a37f72020-06-26 12:55:01 -040091
David Garcia49379ce2021-02-24 13:48:22 +010092 def _check_missing_dependencies(self, config: ConfigModel):
93 missing_relations = []
beierlma4a37f72020-06-26 12:55:01 -040094
David Garcia4a0db7c2022-02-21 11:48:11 +010095 if not self.kafka.host or not self.kafka.port:
David Garcia49379ce2021-02-24 13:48:22 +010096 missing_relations.append("kafka")
sousaedu996a5602021-05-03 00:22:43 +020097 if not config.mongodb_uri and self.mongodb_client.is_missing_data_in_unit():
David Garcia49379ce2021-02-24 13:48:22 +010098 missing_relations.append("mongodb")
beierlma4a37f72020-06-26 12:55:01 -040099
David Garcia49379ce2021-02-24 13:48:22 +0100100 if missing_relations:
101 raise RelationsMissing(missing_relations)
beierlma4a37f72020-06-26 12:55:01 -0400102
David Garcia49379ce2021-02-24 13:48:22 +0100103 def build_pod_spec(self, image_info):
104 # Validate config
105 config = ConfigModel(**dict(self.config))
sousaedu996a5602021-05-03 00:22:43 +0200106
107 if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit():
108 raise Exception("Mongodb data cannot be provided via config and relation")
109
David Garcia49379ce2021-02-24 13:48:22 +0100110 # Check relations
111 self._check_missing_dependencies(config)
sousaedu996a5602021-05-03 00:22:43 +0200112
David Garcia49379ce2021-02-24 13:48:22 +0100113 # Create Builder for the PodSpec
sousaedu540d9372021-09-29 01:53:30 +0100114 pod_spec_builder = PodSpecV3Builder(
115 enable_security_context=config.security_context
116 )
sousaedu996a5602021-05-03 00:22:43 +0200117
David Garcia141d9352021-09-08 17:48:40 +0200118 # Add secrets to the pod
119 mongodb_secret_name = f"{self.app.name}-mongodb-secret"
120 pod_spec_builder.add_secret(
121 mongodb_secret_name,
122 {
123 "uri": config.mongodb_uri or self.mongodb_client.connection_string,
124 "commonkey": config.database_commonkey,
125 },
126 )
127
David Garcia49379ce2021-02-24 13:48:22 +0100128 # Build Container
sousaedu3ddbbd12021-08-24 19:57:24 +0100129 container_builder = ContainerV3Builder(
sousaedu540d9372021-09-29 01:53:30 +0100130 self.app.name,
131 image_info,
132 config.image_pull_policy,
133 run_as_non_root=config.security_context,
sousaedu3ddbbd12021-08-24 19:57:24 +0100134 )
David Garcia49379ce2021-02-24 13:48:22 +0100135 container_builder.add_port(name=self.app.name, port=PORT)
136 container_builder.add_envs(
David Garciafa75eca2020-11-04 18:34:41 +0100137 {
David Garcia49379ce2021-02-24 13:48:22 +0100138 # General configuration
139 "ALLOW_ANONYMOUS_LOGIN": "yes",
140 "OSMPLA_GLOBAL_LOG_LEVEL": config.log_level,
141 # Kafka configuration
142 "OSMPLA_MESSAGE_DRIVER": "kafka",
David Garcia4a0db7c2022-02-21 11:48:11 +0100143 "OSMPLA_MESSAGE_HOST": self.kafka.host,
144 "OSMPLA_MESSAGE_PORT": self.kafka.port,
David Garcia49379ce2021-02-24 13:48:22 +0100145 # Database configuration
146 "OSMPLA_DATABASE_DRIVER": "mongo",
David Garcia49379ce2021-02-24 13:48:22 +0100147 }
148 )
beierlma4a37f72020-06-26 12:55:01 -0400149
David Garcia141d9352021-09-08 17:48:40 +0200150 container_builder.add_secret_envs(
151 secret_name=mongodb_secret_name,
152 envs={
153 "OSMPLA_DATABASE_URI": "uri",
154 "OSMPLA_DATABASE_COMMONKEY": "commonkey",
155 },
156 )
157
David Garcia49379ce2021-02-24 13:48:22 +0100158 container = container_builder.build()
sousaedu996a5602021-05-03 00:22:43 +0200159
David Garcia141d9352021-09-08 17:48:40 +0200160 # Add Pod restart policy
161 restart_policy = PodRestartPolicy()
aticig0ccac0f2022-03-17 14:26:50 +0300162 restart_policy.add_secrets(secret_names=(mongodb_secret_name,))
David Garcia141d9352021-09-08 17:48:40 +0200163 pod_spec_builder.set_restart_policy(restart_policy)
164
David Garcia49379ce2021-02-24 13:48:22 +0100165 # Add container to pod spec
166 pod_spec_builder.add_container(container)
sousaedu996a5602021-05-03 00:22:43 +0200167
David Garcia49379ce2021-02-24 13:48:22 +0100168 return pod_spec_builder.build()
beierlma4a37f72020-06-26 12:55:01 -0400169
170
171if __name__ == "__main__":
David Garcia49379ce2021-02-24 13:48:22 +0100172 main(PlaCharm)