2 # Copyright 2021 Canonical Ltd.
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
8 # http://www.apache.org/licenses/LICENSE-2.0
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
16 # For those usages not covered by the Apache License, Version 2.0 please
17 # contact: legal@canonical.com
19 # To get in touch with the maintainers, please contact:
20 # osm-charmers@lists.launchpad.net
23 from ipaddress
import ip_network
25 from typing
import Any
, Dict
, List
26 from urllib
.parse
import urlparse
28 logger
= logging
.getLogger(__name__
)
31 def _validate_ip_network(network
: str) -> bool:
32 """Validate IP network.
35 network (str): IP network range.
38 bool: True if valid, false otherwise.
51 def _validate_data(config_data
: Dict
[str, Any
], relation_data
: Dict
[str, Any
]) -> bool:
52 """Validates passed information.
55 config_data (Dict[str, Any]): configuration information.
56 relation_data (Dict[str, Any]): relation information
59 ValueError: when config and/or relation data is not valid.
62 "site_url": lambda value
, _
: isinstance(value
, str)
65 "cluster_issuer": lambda value
, _
: isinstance(value
, str)
68 "ingress_whitelist_source_range": lambda value
, _
: _validate_ip_network(value
),
69 "tls_secret_name": lambda value
, _
: isinstance(value
, str)
73 relation_validators
= {
74 "mysql_host": lambda value
, _
: isinstance(value
, str) and len(value
) > 0,
75 "mysql_port": lambda value
, _
: isinstance(value
, str) and int(value
) > 0,
76 "mysql_user": lambda value
, _
: isinstance(value
, str) and len(value
) > 0,
77 "mysql_password": lambda value
, _
: isinstance(value
, str) and len(value
) > 0,
78 "mysql_root_password": lambda value
, _
: isinstance(value
, str)
83 for key
, validator
in config_validators
.items():
84 valid
= validator(config_data
.get(key
), config_data
)
89 for key
, validator
in relation_validators
.items():
90 valid
= validator(relation_data
.get(key
), relation_data
)
96 raise ValueError("Errors found in: {}".format(", ".join(problems
)))
101 def _make_pod_ports(port
: int) -> List
[Dict
[str, Any
]]:
102 """Generate pod ports details.
105 port (int): port to expose.
108 List[Dict[str, Any]]: pod port details.
110 return [{"name": "mysqld-exporter", "containerPort": port
, "protocol": "TCP"}]
113 def _make_pod_envconfig(
114 config
: Dict
[str, Any
], relation_state
: Dict
[str, Any
]
116 """Generate pod environment configuration.
119 config (Dict[str, Any]): configuration information.
120 relation_state (Dict[str, Any]): relation state information.
123 Dict[str, Any]: pod environment configuration.
126 "DATA_SOURCE_NAME": "root:{mysql_root_password}@({mysql_host}:{mysql_port})/".format(
134 def _make_pod_ingress_resources(
135 config
: Dict
[str, Any
], app_name
: str, port
: int
136 ) -> List
[Dict
[str, Any
]]:
137 """Generate pod ingress resources.
140 config (Dict[str, Any]): configuration information.
141 app_name (str): application name.
142 port (int): port to expose.
145 List[Dict[str, Any]]: pod ingress resources.
147 site_url
= config
.get("site_url")
152 parsed
= urlparse(site_url
)
154 if not parsed
.scheme
.startswith("http"):
157 ingress_whitelist_source_range
= config
["ingress_whitelist_source_range"]
158 cluster_issuer
= config
["cluster_issuer"]
162 if ingress_whitelist_source_range
:
164 "nginx.ingress.kubernetes.io/whitelist-source-range"
165 ] = ingress_whitelist_source_range
168 annotations
["cert-manager.io/cluster-issuer"] = cluster_issuer
170 ingress_spec_tls
= None
172 if parsed
.scheme
== "https":
173 ingress_spec_tls
= [{"hosts": [parsed
.hostname
]}]
174 tls_secret_name
= config
["tls_secret_name"]
176 ingress_spec_tls
[0]["secretName"] = tls_secret_name
178 annotations
["nginx.ingress.kubernetes.io/ssl-redirect"] = "false"
181 "name": "{}-ingress".format(app_name
),
182 "annotations": annotations
,
186 "host": parsed
.hostname
,
192 "serviceName": app_name
,
203 ingress
["spec"]["tls"] = ingress_spec_tls
208 def _make_readiness_probe(port
: int) -> Dict
[str, Any
]:
209 """Generate readiness probe.
212 port (int): service port.
215 Dict[str, Any]: readiness probe.
219 "path": "/api/health",
222 "initialDelaySeconds": 10,
225 "successThreshold": 1,
226 "failureThreshold": 3,
230 def _make_liveness_probe(port
: int) -> Dict
[str, Any
]:
231 """Generate liveness probe.
234 port (int): service port.
237 Dict[str, Any]: liveness probe.
241 "path": "/api/health",
244 "initialDelaySeconds": 60,
245 "timeoutSeconds": 30,
246 "failureThreshold": 10,
251 image_info
: Dict
[str, str],
252 config
: Dict
[str, Any
],
253 relation_state
: Dict
[str, Any
],
254 app_name
: str = "mysqld-exporter",
257 """Generate the pod spec information.
260 image_info (Dict[str, str]): Object provided by
261 OCIImageResource("image").fetch().
262 config (Dict[str, Any]): Configuration information.
263 relation_state (Dict[str, Any]): Relation state information.
264 app_name (str, optional): Application name. Defaults to "ro".
265 port (int, optional): Port for the container. Defaults to 9090.
268 Dict[str, Any]: Pod spec dictionary for the charm.
273 _validate_data(config
, relation_state
)
275 ports
= _make_pod_ports(port
)
276 env_config
= _make_pod_envconfig(config
, relation_state
)
277 readiness_probe
= _make_readiness_probe(port
)
278 liveness_probe
= _make_liveness_probe(port
)
279 ingress_resources
= _make_pod_ingress_resources(config
, app_name
, port
)
286 "imageDetails": image_info
,
287 "imagePullPolicy": "Always",
289 "envConfig": env_config
,
291 "readinessProbe": readiness_probe
,
292 "livenessProbe": liveness_probe
,
296 "kubernetesResources": {
297 "ingressResources": ingress_resources
or [],