| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 2 | # Copyright 2021 Canonical Ltd. |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 3 | # |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 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 |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 7 | # |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 9 | # |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 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 | |
| 23 | # pylint: disable=E0213 |
| 24 | |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 25 | |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 26 | import logging |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 27 | from typing import NoReturn, Optional |
| beierlm | b1a1c46 | 2020-10-23 14:54:56 -0400 | [diff] [blame] | 28 | |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 29 | from charms.kafka_k8s.v0.kafka import KafkaEvents, KafkaRequires |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 30 | from ops.main import main |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 31 | from opslib.osm.charm import CharmedOsmBase, RelationsMissing |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 32 | from opslib.osm.interfaces.mongo import MongoClient |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 33 | from opslib.osm.pod import ( |
| 34 | ContainerV3Builder, |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 35 | PodRestartPolicy, |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 36 | PodSpecV3Builder, |
| 37 | ) |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 38 | from opslib.osm.validator import ModelValidator, validator |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 39 | |
| 40 | |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 41 | logger = logging.getLogger(__name__) |
| 42 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 43 | PORT = 9999 |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 44 | |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 45 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 46 | class ConfigModel(ModelValidator): |
| 47 | database_commonkey: str |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 48 | mongodb_uri: Optional[str] |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 49 | log_level: str |
| sousaedu | 0dc25b3 | 2021-08-30 16:33:33 +0100 | [diff] [blame] | 50 | image_pull_policy: str |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 51 | security_context: bool |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 52 | |
| 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 | |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 59 | @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 | |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 65 | @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 Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 77 | |
| 78 | class PlaCharm(CharmedOsmBase): |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 79 | |
| 80 | on = KafkaEvents() |
| 81 | |
| David Garcia | 95ba7e1 | 2021-02-03 11:10:28 +0100 | [diff] [blame] | 82 | def __init__(self, *args) -> NoReturn: |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 83 | super().__init__(*args, oci_image="image") |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 84 | |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 85 | self.kafka = KafkaRequires(self) |
| 86 | self.framework.observe(self.on.kafka_available, self.configure_pod) |
| 87 | self.framework.observe(self.on.kafka_broken, self.configure_pod) |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 88 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 89 | self.mongodb_client = MongoClient(self, "mongodb") |
| 90 | self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod) |
| 91 | self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod) |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 92 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 93 | def _check_missing_dependencies(self, config: ConfigModel): |
| 94 | missing_relations = [] |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 95 | |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 96 | if not self.kafka.host or not self.kafka.port: |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 97 | missing_relations.append("kafka") |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 98 | if not config.mongodb_uri and self.mongodb_client.is_missing_data_in_unit(): |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 99 | missing_relations.append("mongodb") |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 100 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 101 | if missing_relations: |
| 102 | raise RelationsMissing(missing_relations) |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 103 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 104 | def build_pod_spec(self, image_info): |
| 105 | # Validate config |
| 106 | config = ConfigModel(**dict(self.config)) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 107 | |
| 108 | if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit(): |
| 109 | raise Exception("Mongodb data cannot be provided via config and relation") |
| 110 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 111 | # Check relations |
| 112 | self._check_missing_dependencies(config) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 113 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 114 | # Create Builder for the PodSpec |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 115 | pod_spec_builder = PodSpecV3Builder( |
| 116 | enable_security_context=config.security_context |
| 117 | ) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 118 | |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 119 | # Add secrets to the pod |
| 120 | mongodb_secret_name = f"{self.app.name}-mongodb-secret" |
| 121 | pod_spec_builder.add_secret( |
| 122 | mongodb_secret_name, |
| 123 | { |
| 124 | "uri": config.mongodb_uri or self.mongodb_client.connection_string, |
| 125 | "commonkey": config.database_commonkey, |
| 126 | }, |
| 127 | ) |
| 128 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 129 | # Build Container |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 130 | container_builder = ContainerV3Builder( |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 131 | self.app.name, |
| 132 | image_info, |
| 133 | config.image_pull_policy, |
| 134 | run_as_non_root=config.security_context, |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 135 | ) |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 136 | container_builder.add_port(name=self.app.name, port=PORT) |
| 137 | container_builder.add_envs( |
| David Garcia | fa75eca | 2020-11-04 18:34:41 +0100 | [diff] [blame] | 138 | { |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 139 | # General configuration |
| 140 | "ALLOW_ANONYMOUS_LOGIN": "yes", |
| 141 | "OSMPLA_GLOBAL_LOG_LEVEL": config.log_level, |
| 142 | # Kafka configuration |
| 143 | "OSMPLA_MESSAGE_DRIVER": "kafka", |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 144 | "OSMPLA_MESSAGE_HOST": self.kafka.host, |
| 145 | "OSMPLA_MESSAGE_PORT": self.kafka.port, |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 146 | # Database configuration |
| 147 | "OSMPLA_DATABASE_DRIVER": "mongo", |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 148 | } |
| 149 | ) |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 150 | |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 151 | container_builder.add_secret_envs( |
| 152 | secret_name=mongodb_secret_name, |
| 153 | envs={ |
| 154 | "OSMPLA_DATABASE_URI": "uri", |
| 155 | "OSMPLA_DATABASE_COMMONKEY": "commonkey", |
| 156 | }, |
| 157 | ) |
| 158 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 159 | container = container_builder.build() |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 160 | |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 161 | # Add Pod restart policy |
| 162 | restart_policy = PodRestartPolicy() |
| 163 | restart_policy.add_secrets(secret_names=(mongodb_secret_name)) |
| 164 | pod_spec_builder.set_restart_policy(restart_policy) |
| 165 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 166 | # Add container to pod spec |
| 167 | pod_spec_builder.add_container(container) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 168 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 169 | return pod_spec_builder.build() |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 170 | |
| 171 | |
| 172 | if __name__ == "__main__": |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 173 | main(PlaCharm) |