Adding ImagePullPolicy config option to OSM Charms
[osm/devops.git] / installers / charm / pol / src / charm.py
1 #!/usr/bin/env python3
2 # Copyright 2021 Canonical Ltd.
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
23 # pylint: disable=E0213
24
25
26 import logging
27 import re
28 from typing import NoReturn, Optional
29
30 from ops.main import main
31 from opslib.osm.charm import CharmedOsmBase, RelationsMissing
32 from opslib.osm.interfaces.kafka import KafkaClient
33 from opslib.osm.interfaces.mongo import MongoClient
34 from opslib.osm.interfaces.mysql import MysqlClient
35 from opslib.osm.pod import (
36 ContainerV3Builder,
37 PodSpecV3Builder,
38 )
39 from opslib.osm.validator import ModelValidator, validator
40
41
42 logger = logging.getLogger(__name__)
43
44 PORT = 9999
45 DEFAULT_MYSQL_DATABASE = "pol"
46
47
48 class ConfigModel(ModelValidator):
49 log_level: str
50 mongodb_uri: Optional[str]
51 mysql_uri: Optional[str]
52 image_pull_policy: Optional[str]
53
54 @validator("log_level")
55 def validate_log_level(cls, v):
56 if v not in {"INFO", "DEBUG"}:
57 raise ValueError("value must be INFO or DEBUG")
58 return v
59
60 @validator("mongoddb_uri")
61 def validate_mongodb_uri(cls, v):
62 if v and not v.startswith("mongodb://"):
63 raise ValueError("mongodb_uri is not properly formed")
64 return v
65
66 @validator("mysql_uri")
67 def validate_mysql_uri(cls, v):
68 pattern = re.compile("^mysql:\/\/.*:.*@.*:\d+\/.*$") # noqa: W605
69 if v and not pattern.search(v):
70 raise ValueError("mysql_uri is not properly formed")
71 return v
72
73 @validator("image_pull_policy")
74 def validate_image_pull_policy(cls, v):
75 values = {
76 "always": "Always",
77 "ifnotpresent": "IfNotPresent",
78 "never": "Never",
79 }
80 v = v.lower()
81 if v not in values.keys():
82 raise ValueError("value must be always, ifnotpresent or never")
83 return values[v]
84
85
86 class PolCharm(CharmedOsmBase):
87 def __init__(self, *args) -> NoReturn:
88 super().__init__(*args, oci_image="image")
89
90 self.kafka_client = KafkaClient(self, "kafka")
91 self.framework.observe(self.on["kafka"].relation_changed, self.configure_pod)
92 self.framework.observe(self.on["kafka"].relation_broken, self.configure_pod)
93
94 self.mongodb_client = MongoClient(self, "mongodb")
95 self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod)
96 self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod)
97
98 self.mysql_client = MysqlClient(self, "mysql")
99 self.framework.observe(self.on["mysql"].relation_changed, self.configure_pod)
100 self.framework.observe(self.on["mysql"].relation_broken, self.configure_pod)
101
102 def _check_missing_dependencies(self, config: ConfigModel):
103 missing_relations = []
104
105 if self.kafka_client.is_missing_data_in_unit():
106 missing_relations.append("kafka")
107 if not config.mongodb_uri and self.mongodb_client.is_missing_data_in_unit():
108 missing_relations.append("mongodb")
109 if not config.mysql_uri and self.mysql_client.is_missing_data_in_unit():
110 missing_relations.append("mysql")
111 if missing_relations:
112 raise RelationsMissing(missing_relations)
113
114 def build_pod_spec(self, image_info):
115 # Validate config
116 config = ConfigModel(**dict(self.config))
117
118 if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit():
119 raise Exception("Mongodb data cannot be provided via config and relation")
120 if config.mysql_uri and not self.mysql_client.is_missing_data_in_unit():
121 raise Exception("Mysql data cannot be provided via config and relation")
122
123 # Check relations
124 self._check_missing_dependencies(config)
125
126 # Create Builder for the PodSpec
127 pod_spec_builder = PodSpecV3Builder()
128
129 # Build Container
130 container_builder = ContainerV3Builder(
131 self.app.name, image_info, config.image_pull_policy
132 )
133 container_builder.add_port(name=self.app.name, port=PORT)
134 container_builder.add_envs(
135 {
136 # General configuration
137 "ALLOW_ANONYMOUS_LOGIN": "yes",
138 "OSMPOL_GLOBAL_LOGLEVEL": config.log_level,
139 # Kafka configuration
140 "OSMPOL_MESSAGE_DRIVER": "kafka",
141 "OSMPOL_MESSAGE_HOST": self.kafka_client.host,
142 "OSMPOL_MESSAGE_PORT": self.kafka_client.port,
143 # Database configuration
144 "OSMPOL_DATABASE_DRIVER": "mongo",
145 "OSMPOL_DATABASE_URI": config.mongodb_uri
146 or self.mongodb_client.connection_string,
147 "OSMPOL_SQL_DATABASE_URI": config.mysql_uri
148 or self.mysql_client.get_root_uri(DEFAULT_MYSQL_DATABASE),
149 }
150 )
151 container = container_builder.build()
152
153 # Add container to pod spec
154 pod_spec_builder.add_container(container)
155
156 return pod_spec_builder.build()
157
158
159 if __name__ == "__main__":
160 main(PolCharm)