X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Fcharm%2Fprometheus%2Fsrc%2Fcharm.py;h=40c4f4eb0d1559bfe5e80560427a7b5c00e66288;hb=refs%2Fchanges%2F26%2F11226%2F2;hp=61589e20ba2632f608a31fa82f890bb46e00e043;hpb=ca7d1b92b6fcd40508b9f074ed0e80be0259fca9;p=osm%2Fdevops.git diff --git a/installers/charm/prometheus/src/charm.py b/installers/charm/prometheus/src/charm.py index 61589e20..40c4f4eb 100755 --- a/installers/charm/prometheus/src/charm.py +++ b/installers/charm/prometheus/src/charm.py @@ -22,11 +22,13 @@ # pylint: disable=E0213 +import base64 from ipaddress import ip_network import logging from typing import NoReturn, Optional from urllib.parse import urlparse +import bcrypt from oci_image import OCIImageResource from ops.framework import EventBase from ops.main import main @@ -62,6 +64,8 @@ class ConfigModel(ModelValidator): enable_web_admin_api: bool image_pull_policy: str security_context: bool + web_config_username: str + web_config_password: str @validator("web_subpath") def validate_web_subpath(cls, v): @@ -135,7 +139,7 @@ class PrometheusCharm(CharmedOsmBase): else: event.fail(f"status-code: {result.status_code}") - def _build_files(self, config: ConfigModel): + def _build_config_file(self, config: ConfigModel): files_builder = FilesV3Builder() files_builder.add_file( "prometheus.yml", @@ -156,6 +160,11 @@ class PrometheusCharm(CharmedOsmBase): ) return files_builder.build() + def _build_webconfig_file(self): + files_builder = FilesV3Builder() + files_builder.add_file("web.yml", "web-config-file", secret=True) + return files_builder.build() + def build_pod_spec(self, image_info): # Validate config config = ConfigModel(**dict(self.config)) @@ -169,9 +178,22 @@ class PrometheusCharm(CharmedOsmBase): backup_image_info = backup_image.fetch() backup_container_builder = ContainerV3Builder("prom-backup", backup_image_info) backup_container = backup_container_builder.build() + # Add backup container to pod spec pod_spec_builder.add_container(backup_container) + # Add pod secrets + prometheus_secret_name = f"{self.app.name}-secret" + pod_spec_builder.add_secret( + prometheus_secret_name, + { + "web-config-file": ( + "basic_auth_users:\n" + f" {config.web_config_username}: {self._hash_password(config.web_config_password)}\n" + ) + }, + ) + # Build Container container_builder = ContainerV3Builder( self.app.name, @@ -180,21 +202,27 @@ class PrometheusCharm(CharmedOsmBase): run_as_non_root=config.security_context, ) container_builder.add_port(name=self.app.name, port=PORT) + token = self._base64_encode( + f"{config.web_config_username}:{config.web_config_password}" + ) container_builder.add_http_readiness_probe( "/-/ready", PORT, initial_delay_seconds=10, timeout_seconds=30, + http_headers=[("Authorization", f"Basic {token}")], ) container_builder.add_http_liveness_probe( "/-/healthy", PORT, initial_delay_seconds=30, period_seconds=30, + http_headers=[("Authorization", f"Basic {token}")], ) command = [ "/bin/prometheus", "--config.file=/etc/prometheus/prometheus.yml", + "--web.config.file=/etc/prometheus/web-config/web.yml", "--storage.tsdb.path=/prometheus", "--web.console.libraries=/usr/share/prometheus/console_libraries", "--web.console.templates=/usr/share/prometheus/consoles", @@ -205,7 +233,13 @@ class PrometheusCharm(CharmedOsmBase): command.append("--web.enable-admin-api") container_builder.add_command(command) container_builder.add_volume_config( - "config", "/etc/prometheus", self._build_files(config) + "config", "/etc/prometheus", self._build_config_file(config) + ) + container_builder.add_volume_config( + "web-config", + "/etc/prometheus/web-config", + self._build_webconfig_file(), + secret_name=prometheus_secret_name, ) container = container_builder.build() # Add container to pod spec @@ -246,6 +280,13 @@ class PrometheusCharm(CharmedOsmBase): pod_spec_builder.add_ingress_resource(ingress_resource) return pod_spec_builder.build() + def _hash_password(self, password): + hashed_password = bcrypt.hashpw(password.encode("utf-8"), bcrypt.gensalt()) + return hashed_password.decode() + + def _base64_encode(self, phrase: str) -> str: + return base64.b64encode(phrase.encode("utf-8")).decode("utf-8") + if __name__ == "__main__": main(PrometheusCharm)