| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 2 | # Copyright 2021 Canonical Ltd. |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 3 | # |
| 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 |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 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 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 23 | # pylint: disable=E0213 |
| 24 | |
| 25 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 26 | import logging |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 27 | from typing import NoReturn, Optional |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 28 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 29 | from ops.main import main |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 30 | from opslib.osm.charm import CharmedOsmBase, RelationsMissing |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 31 | from opslib.osm.interfaces.kafka import KafkaClient |
| 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, |
| 35 | PodSpecV3Builder, |
| 36 | ) |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 37 | from opslib.osm.validator import ModelValidator, validator |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 38 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 39 | |
| 40 | logger = logging.getLogger(__name__) |
| 41 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 42 | PORT = 9999 |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 43 | |
| 44 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 45 | class ConfigModel(ModelValidator): |
| 46 | log_level: str |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 47 | mongodb_uri: Optional[str] |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 48 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 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 |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 54 | |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 55 | @validator("mongoddb_uri") |
| 56 | def validate_mongodb_uri(cls, v): |
| 57 | if v and not v.startswith("mongodb://"): |
| 58 | raise ValueError("mongodb_uri is not properly formed") |
| 59 | return v |
| 60 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 61 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 62 | class PolCharm(CharmedOsmBase): |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 63 | def __init__(self, *args) -> NoReturn: |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 64 | super().__init__(*args, oci_image="image") |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 65 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 66 | self.kafka_client = KafkaClient(self, "kafka") |
| 67 | self.framework.observe(self.on["kafka"].relation_changed, self.configure_pod) |
| 68 | self.framework.observe(self.on["kafka"].relation_broken, self.configure_pod) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 69 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 70 | self.mongodb_client = MongoClient(self, "mongodb") |
| 71 | self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod) |
| 72 | self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 73 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 74 | def _check_missing_dependencies(self, config: ConfigModel): |
| 75 | missing_relations = [] |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 76 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 77 | if self.kafka_client.is_missing_data_in_unit(): |
| 78 | missing_relations.append("kafka") |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 79 | 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] | 80 | missing_relations.append("mongodb") |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 81 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 82 | if missing_relations: |
| 83 | raise RelationsMissing(missing_relations) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 84 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 85 | def build_pod_spec(self, image_info): |
| 86 | # Validate config |
| 87 | config = ConfigModel(**dict(self.config)) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 88 | |
| 89 | if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit(): |
| 90 | raise Exception("Mongodb data cannot be provided via config and relation") |
| 91 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 92 | # Check relations |
| 93 | self._check_missing_dependencies(config) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 94 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 95 | # Create Builder for the PodSpec |
| 96 | pod_spec_builder = PodSpecV3Builder() |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 97 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 98 | # Build Container |
| 99 | container_builder = ContainerV3Builder(self.app.name, image_info) |
| 100 | container_builder.add_port(name=self.app.name, port=PORT) |
| 101 | container_builder.add_envs( |
| 102 | { |
| 103 | # General configuration |
| 104 | "ALLOW_ANONYMOUS_LOGIN": "yes", |
| 105 | "OSMPOL_GLOBAL_LOGLEVEL": config.log_level, |
| 106 | # Kafka configuration |
| 107 | "OSMPOL_MESSAGE_DRIVER": "kafka", |
| 108 | "OSMPOL_MESSAGE_HOST": self.kafka_client.host, |
| 109 | "OSMPOL_MESSAGE_PORT": self.kafka_client.port, |
| 110 | # Database configuration |
| 111 | "OSMPOL_DATABASE_DRIVER": "mongo", |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 112 | "OSMPOL_DATABASE_URI": config.mongodb_uri |
| 113 | or self.mongodb_client.connection_string, |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 114 | } |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 115 | ) |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 116 | container = container_builder.build() |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 117 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 118 | # Add container to pod spec |
| 119 | pod_spec_builder.add_container(container) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 120 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 121 | return pod_spec_builder.build() |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 122 | |
| 123 | |
| 124 | if __name__ == "__main__": |
| 125 | main(PolCharm) |