Add NBI Charm Library
[osm/devops.git] / installers / charm / osm-nbi / src / charm.py
1 #!/usr/bin/env python3
2 # Copyright 2022 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 # Learn more at: https://juju.is/docs/sdk
24
25 """OSM NBI charm.
26
27 See more: https://charmhub.io/osm
28 """
29
30 import logging
31 from typing import Any, Dict
32
33 from charms.kafka_k8s.v0.kafka import KafkaEvents, KafkaRequires
34 from charms.nginx_ingress_integrator.v0.ingress import IngressRequires
35 from charms.observability_libs.v1.kubernetes_service_patch import KubernetesServicePatch
36 from charms.osm_libs.v0.utils import (
37 CharmError,
38 DebugMode,
39 HostPath,
40 check_container_ready,
41 check_service_active,
42 )
43 from charms.osm_nbi.v0.nbi import NbiProvides
44 from lightkube.models.core_v1 import ServicePort
45 from ops.charm import ActionEvent, CharmBase, RelationJoinedEvent
46 from ops.framework import StoredState
47 from ops.main import main
48 from ops.model import ActiveStatus, Container
49
50 from legacy_interfaces import KeystoneClient, MongoClient, PrometheusClient
51
52 HOSTPATHS = [
53 HostPath(
54 config="nbi-hostpath",
55 container_path="/usr/lib/python3/dist-packages/osm_nbi",
56 ),
57 HostPath(
58 config="common-hostpath",
59 container_path="/usr/lib/python3/dist-packages/osm_common",
60 ),
61 ]
62 SERVICE_PORT = 9999
63
64 logger = logging.getLogger(__name__)
65
66
67 class OsmNbiCharm(CharmBase):
68 """OSM NBI Kubernetes sidecar charm."""
69
70 on = KafkaEvents()
71 _stored = StoredState()
72
73 def __init__(self, *args):
74 super().__init__(*args)
75 self.ingress = IngressRequires(
76 self,
77 {
78 "service-hostname": self.external_hostname,
79 "service-name": self.app.name,
80 "service-port": SERVICE_PORT,
81 },
82 )
83 self.kafka = KafkaRequires(self)
84 self.nbi = NbiProvides(self)
85 self.mongodb_client = MongoClient(self, "mongodb")
86 self.prometheus_client = PrometheusClient(self, "prometheus")
87 self.keystone_client = KeystoneClient(self, "keystone")
88 self._observe_charm_events()
89 self.container: Container = self.unit.get_container("nbi")
90 self.debug_mode = DebugMode(self, self._stored, self.container, HOSTPATHS)
91 self._patch_k8s_service()
92
93 @property
94 def external_hostname(self) -> str:
95 """External hostname property.
96
97 Returns:
98 str: the external hostname from config.
99 If not set, return the ClusterIP service name.
100 """
101 return self.config.get("external-hostname") or self.app.name
102
103 # ---------------------------------------------------------------------------
104 # Handlers for Charm Events
105 # ---------------------------------------------------------------------------
106
107 def _on_config_changed(self, _) -> None:
108 """Handler for the config-changed event."""
109 try:
110 self._validate_config()
111 self._check_relations()
112 # Check if the container is ready.
113 # Eventually it will become ready after the first pebble-ready event.
114 check_container_ready(self.container)
115
116 self._configure_service(self.container)
117 self._update_ingress_config()
118 self._update_nbi_relation()
119 # Update charm status
120 self._on_update_status()
121 except CharmError as e:
122 logger.debug(e.message)
123 self.unit.status = e.status
124
125 def _on_update_status(self, _=None) -> None:
126 """Handler for the update-status event."""
127 try:
128 self._check_relations()
129 if self.debug_mode.started:
130 return
131 check_container_ready(self.container)
132 check_service_active(self.container, "nbi")
133 self.unit.status = ActiveStatus()
134 except CharmError as e:
135 logger.debug(e.message)
136 self.unit.status = e.status
137
138 def _on_required_relation_broken(self, _) -> None:
139 """Handler for the kafka-broken event."""
140 # Check Pebble has started in the container
141 try:
142 check_container_ready(self.container)
143 check_service_active(self.container, "nbi")
144 self.container.stop("nbi")
145 except CharmError:
146 pass
147 finally:
148 self._on_update_status()
149
150 def _update_nbi_relation(self, event: RelationJoinedEvent = None) -> None:
151 """Handler for the nbi-relation-joined event."""
152 if self.unit.is_leader():
153 self.nbi.set_host_info(self.app.name, SERVICE_PORT, event.relation if event else None)
154
155 def _on_get_debug_mode_information_action(self, event: ActionEvent) -> None:
156 """Handler for the get-debug-mode-information action event."""
157 if not self.debug_mode.started:
158 event.fail("debug-mode has not started. Hint: juju config nbi debug-mode=true")
159 return
160
161 debug_info = {"command": self.debug_mode.command, "password": self.debug_mode.password}
162 event.set_results(debug_info)
163
164 # ---------------------------------------------------------------------------
165 # Validation and configuration and more
166 # ---------------------------------------------------------------------------
167
168 def _patch_k8s_service(self) -> None:
169 port = ServicePort(SERVICE_PORT, name=f"{self.app.name}")
170 self.service_patcher = KubernetesServicePatch(self, [port])
171
172 def _observe_charm_events(self) -> None:
173 event_handler_mapping = {
174 # Core lifecycle events
175 self.on.nbi_pebble_ready: self._on_config_changed,
176 self.on.config_changed: self._on_config_changed,
177 self.on.update_status: self._on_update_status,
178 # Relation events
179 self.on.kafka_available: self._on_config_changed,
180 self.on["kafka"].relation_broken: self._on_required_relation_broken,
181 # Action events
182 self.on.get_debug_mode_information_action: self._on_get_debug_mode_information_action,
183 self.on.nbi_relation_joined: self._update_nbi_relation,
184 }
185 for relation in [self.on[rel_name] for rel_name in ["mongodb", "prometheus", "keystone"]]:
186 event_handler_mapping[relation.relation_changed] = self._on_config_changed
187 event_handler_mapping[relation.relation_broken] = self._on_required_relation_broken
188
189 for event, handler in event_handler_mapping.items():
190 self.framework.observe(event, handler)
191
192 def _validate_config(self) -> None:
193 """Validate charm configuration.
194
195 Raises:
196 CharmError: if charm configuration is invalid.
197 """
198 logger.debug("validating charm config")
199
200 def _check_relations(self) -> None:
201 """Validate charm relations.
202
203 Raises:
204 CharmError: if charm configuration is invalid.
205 """
206 logger.debug("check for missing relations")
207 missing_relations = []
208
209 if not self.kafka.host or not self.kafka.port:
210 missing_relations.append("kafka")
211 if self.mongodb_client.is_missing_data_in_unit():
212 missing_relations.append("mongodb")
213 if self.prometheus_client.is_missing_data_in_app():
214 missing_relations.append("prometheus")
215 if self.keystone_client.is_missing_data_in_app():
216 missing_relations.append("keystone")
217
218 if missing_relations:
219 relations_str = ", ".join(missing_relations)
220 one_relation_missing = len(missing_relations) == 1
221 error_msg = f'need {relations_str} relation{"" if one_relation_missing else "s"}'
222 logger.warning(error_msg)
223 raise CharmError(error_msg)
224
225 def _update_ingress_config(self) -> None:
226 """Update ingress config in relation."""
227 ingress_config = {
228 "service-hostname": self.external_hostname,
229 "max-body-size": self.config["max-body-size"],
230 }
231 if "tls-secret-name" in self.config:
232 ingress_config["tls-secret-name"] = self.config["tls-secret-name"]
233 logger.debug(f"updating ingress-config: {ingress_config}")
234 self.ingress.update_config(ingress_config)
235
236 def _configure_service(self, container: Container) -> None:
237 """Add Pebble layer with the nbi service."""
238 logger.debug(f"configuring {self.app.name} service")
239 container.add_layer("nbi", self._get_layer(), combine=True)
240 container.replan()
241
242 def _get_layer(self) -> Dict[str, Any]:
243 """Get layer for Pebble."""
244 return {
245 "summary": "nbi layer",
246 "description": "pebble config layer for nbi",
247 "services": {
248 "nbi": {
249 "override": "replace",
250 "summary": "nbi service",
251 "command": "python3 -m osm_nbi.nbi",
252 "startup": "enabled",
253 "user": "appuser",
254 "group": "appuser",
255 "environment": {
256 # General configuration
257 "OSMNBI_SERVER_ENABLE_TEST": False,
258 "OSMNBI_STATIC_DIR": "/app/osm_nbi/html_public",
259 # Kafka configuration
260 "OSMNBI_MESSAGE_HOST": self.kafka.host,
261 "OSMNBI_MESSAGE_PORT": self.kafka.port,
262 "OSMNBI_MESSAGE_DRIVER": "kafka",
263 # Database configuration
264 "OSMNBI_DATABASE_DRIVER": "mongo",
265 "OSMNBI_DATABASE_URI": self.mongodb_client.connection_string,
266 "OSMNBI_DATABASE_COMMONKEY": self.config["database-commonkey"],
267 # Storage configuration
268 "OSMNBI_STORAGE_DRIVER": "mongo",
269 "OSMNBI_STORAGE_PATH": "/app/storage",
270 "OSMNBI_STORAGE_COLLECTION": "files",
271 "OSMNBI_STORAGE_URI": self.mongodb_client.connection_string,
272 # Prometheus configuration
273 "OSMNBI_PROMETHEUS_HOST": self.prometheus_client.hostname,
274 "OSMNBI_PROMETHEUS_PORT": self.prometheus_client.port,
275 # Log configuration
276 "OSMNBI_LOG_LEVEL": self.config["log-level"],
277 # Authentication environments
278 "OSMNBI_AUTHENTICATION_BACKEND": "keystone",
279 "OSMNBI_AUTHENTICATION_AUTH_URL": self.keystone_client.host,
280 "OSMNBI_AUTHENTICATION_AUTH_PORT": self.keystone_client.port,
281 "OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME": self.keystone_client.user_domain_name,
282 "OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME": self.keystone_client.project_domain_name,
283 "OSMNBI_AUTHENTICATION_SERVICE_USERNAME": self.keystone_client.username,
284 "OSMNBI_AUTHENTICATION_SERVICE_PASSWORD": self.keystone_client.password,
285 "OSMNBI_AUTHENTICATION_SERVICE_PROJECT": self.keystone_client.service,
286 },
287 }
288 },
289 }
290
291
292 if __name__ == "__main__": # pragma: no cover
293 main(OsmNbiCharm)