| 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 |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 27 | import re |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 28 | from typing import NoReturn, Optional |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 29 | |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 30 | from charms.kafka_k8s.v0.kafka import KafkaEvents, KafkaRequires |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 31 | from ops.main import main |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 32 | from opslib.osm.charm import CharmedOsmBase, RelationsMissing |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 33 | from opslib.osm.interfaces.mongo import MongoClient |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 34 | from opslib.osm.interfaces.mysql import MysqlClient |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 35 | from opslib.osm.pod import ( |
| 36 | ContainerV3Builder, |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 37 | PodRestartPolicy, |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 38 | PodSpecV3Builder, |
| 39 | ) |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 40 | from opslib.osm.validator import ModelValidator, validator |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 41 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 42 | |
| 43 | logger = logging.getLogger(__name__) |
| 44 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 45 | PORT = 9999 |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 46 | DEFAULT_MYSQL_DATABASE = "pol" |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 47 | |
| 48 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 49 | class ConfigModel(ModelValidator): |
| 50 | log_level: str |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 51 | mongodb_uri: Optional[str] |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 52 | mysql_uri: Optional[str] |
| sousaedu | 0dc25b3 | 2021-08-30 16:33:33 +0100 | [diff] [blame] | 53 | image_pull_policy: str |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 54 | debug_mode: bool |
| 55 | security_context: bool |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 56 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 57 | @validator("log_level") |
| 58 | def validate_log_level(cls, v): |
| 59 | if v not in {"INFO", "DEBUG"}: |
| 60 | raise ValueError("value must be INFO or DEBUG") |
| 61 | return v |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 62 | |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 63 | @validator("mongoddb_uri") |
| 64 | def validate_mongodb_uri(cls, v): |
| 65 | if v and not v.startswith("mongodb://"): |
| 66 | raise ValueError("mongodb_uri is not properly formed") |
| 67 | return v |
| 68 | |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 69 | @validator("mysql_uri") |
| 70 | def validate_mysql_uri(cls, v): |
| 71 | pattern = re.compile("^mysql:\/\/.*:.*@.*:\d+\/.*$") # noqa: W605 |
| 72 | if v and not pattern.search(v): |
| 73 | raise ValueError("mysql_uri is not properly formed") |
| 74 | return v |
| 75 | |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 76 | @validator("image_pull_policy") |
| 77 | def validate_image_pull_policy(cls, v): |
| 78 | values = { |
| 79 | "always": "Always", |
| 80 | "ifnotpresent": "IfNotPresent", |
| 81 | "never": "Never", |
| 82 | } |
| 83 | v = v.lower() |
| 84 | if v not in values.keys(): |
| 85 | raise ValueError("value must be always, ifnotpresent or never") |
| 86 | return values[v] |
| 87 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 88 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 89 | class PolCharm(CharmedOsmBase): |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 90 | |
| 91 | on = KafkaEvents() |
| 92 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 93 | def __init__(self, *args) -> NoReturn: |
| David Garcia | d680be4 | 2021-08-17 11:03:55 +0200 | [diff] [blame] | 94 | super().__init__( |
| 95 | *args, |
| 96 | oci_image="image", |
| David Garcia | d680be4 | 2021-08-17 11:03:55 +0200 | [diff] [blame] | 97 | vscode_workspace=VSCODE_WORKSPACE, |
| 98 | ) |
| David Garcia | cafe31e | 2021-11-18 16:45:05 +0100 | [diff] [blame] | 99 | if self.config.get("debug_mode"): |
| 100 | self.enable_debug_mode( |
| 101 | pubkey=self.config.get("debug_pubkey"), |
| 102 | hostpaths={ |
| 103 | "POL": { |
| 104 | "hostpath": self.config.get("debug_pol_local_path"), |
| 105 | "container-path": "/usr/lib/python3/dist-packages/osm_policy_module", |
| 106 | }, |
| 107 | "osm_common": { |
| 108 | "hostpath": self.config.get("debug_common_local_path"), |
| 109 | "container-path": "/usr/lib/python3/dist-packages/osm_common", |
| 110 | }, |
| 111 | }, |
| 112 | ) |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 113 | self.kafka = KafkaRequires(self) |
| 114 | self.framework.observe(self.on.kafka_available, self.configure_pod) |
| 115 | self.framework.observe(self.on.kafka_broken, self.configure_pod) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 116 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 117 | self.mongodb_client = MongoClient(self, "mongodb") |
| 118 | self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod) |
| 119 | self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 120 | |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 121 | self.mysql_client = MysqlClient(self, "mysql") |
| 122 | self.framework.observe(self.on["mysql"].relation_changed, self.configure_pod) |
| 123 | self.framework.observe(self.on["mysql"].relation_broken, self.configure_pod) |
| 124 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 125 | def _check_missing_dependencies(self, config: ConfigModel): |
| 126 | missing_relations = [] |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 127 | |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 128 | if not self.kafka.host or not self.kafka.port: |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 129 | missing_relations.append("kafka") |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 130 | 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] | 131 | missing_relations.append("mongodb") |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 132 | if not config.mysql_uri and self.mysql_client.is_missing_data_in_unit(): |
| 133 | missing_relations.append("mysql") |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 134 | if missing_relations: |
| 135 | raise RelationsMissing(missing_relations) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 136 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 137 | def build_pod_spec(self, image_info): |
| 138 | # Validate config |
| 139 | config = ConfigModel(**dict(self.config)) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 140 | |
| 141 | if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit(): |
| 142 | raise Exception("Mongodb data cannot be provided via config and relation") |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 143 | if config.mysql_uri and not self.mysql_client.is_missing_data_in_unit(): |
| 144 | raise Exception("Mysql data cannot be provided via config and relation") |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 145 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 146 | # Check relations |
| 147 | self._check_missing_dependencies(config) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 148 | |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 149 | security_context_enabled = ( |
| 150 | config.security_context if not config.debug_mode else False |
| 151 | ) |
| 152 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 153 | # Create Builder for the PodSpec |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 154 | pod_spec_builder = PodSpecV3Builder( |
| 155 | enable_security_context=security_context_enabled |
| 156 | ) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 157 | |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 158 | # Add secrets to the pod |
| 159 | mongodb_secret_name = f"{self.app.name}-mongodb-secret" |
| 160 | pod_spec_builder.add_secret( |
| 161 | mongodb_secret_name, |
| 162 | {"uri": config.mongodb_uri or self.mongodb_client.connection_string}, |
| 163 | ) |
| 164 | mysql_secret_name = f"{self.app.name}-mysql-secret" |
| 165 | pod_spec_builder.add_secret( |
| 166 | mysql_secret_name, |
| 167 | { |
| 168 | "uri": config.mysql_uri |
| 169 | or self.mysql_client.get_root_uri(DEFAULT_MYSQL_DATABASE) |
| 170 | }, |
| 171 | ) |
| 172 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 173 | # Build Container |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 174 | container_builder = ContainerV3Builder( |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 175 | self.app.name, |
| 176 | image_info, |
| 177 | config.image_pull_policy, |
| 178 | run_as_non_root=security_context_enabled, |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 179 | ) |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 180 | container_builder.add_port(name=self.app.name, port=PORT) |
| 181 | container_builder.add_envs( |
| 182 | { |
| 183 | # General configuration |
| 184 | "ALLOW_ANONYMOUS_LOGIN": "yes", |
| 185 | "OSMPOL_GLOBAL_LOGLEVEL": config.log_level, |
| 186 | # Kafka configuration |
| 187 | "OSMPOL_MESSAGE_DRIVER": "kafka", |
| David Garcia | 4a0db7c | 2022-02-21 11:48:11 +0100 | [diff] [blame] | 188 | "OSMPOL_MESSAGE_HOST": self.kafka.host, |
| 189 | "OSMPOL_MESSAGE_PORT": self.kafka.port, |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 190 | # Database configuration |
| 191 | "OSMPOL_DATABASE_DRIVER": "mongo", |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 192 | } |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 193 | ) |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 194 | container_builder.add_secret_envs( |
| 195 | mongodb_secret_name, {"OSMPOL_DATABASE_URI": "uri"} |
| 196 | ) |
| 197 | container_builder.add_secret_envs( |
| 198 | mysql_secret_name, {"OSMPOL_SQL_DATABASE_URI": "uri"} |
| 199 | ) |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 200 | container = container_builder.build() |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 201 | |
| David Garcia | 141d935 | 2021-09-08 17:48:40 +0200 | [diff] [blame] | 202 | # Add Pod restart policy |
| 203 | restart_policy = PodRestartPolicy() |
| 204 | restart_policy.add_secrets( |
| 205 | secret_names=(mongodb_secret_name, mysql_secret_name) |
| 206 | ) |
| 207 | pod_spec_builder.set_restart_policy(restart_policy) |
| 208 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 209 | # Add container to pod spec |
| 210 | pod_spec_builder.add_container(container) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 211 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 212 | return pod_spec_builder.build() |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 213 | |
| 214 | |
| David Garcia | d680be4 | 2021-08-17 11:03:55 +0200 | [diff] [blame] | 215 | VSCODE_WORKSPACE = { |
| 216 | "folders": [ |
| 217 | {"path": "/usr/lib/python3/dist-packages/osm_policy_module"}, |
| 218 | {"path": "/usr/lib/python3/dist-packages/osm_common"}, |
| 219 | ], |
| 220 | "settings": {}, |
| 221 | "launch": { |
| 222 | "version": "0.2.0", |
| 223 | "configurations": [ |
| 224 | { |
| 225 | "name": "POL", |
| 226 | "type": "python", |
| 227 | "request": "launch", |
| 228 | "module": "osm_policy_module.cmd.policy_module_agent", |
| 229 | "justMyCode": False, |
| 230 | } |
| 231 | ], |
| 232 | }, |
| 233 | } |
| 234 | |
| 235 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 236 | if __name__ == "__main__": |
| 237 | main(PolCharm) |