blob: 1fc6386fa64270e98667e97fc0abf40115a917ed [file] [log] [blame]
David Garcia18c7a8b2020-07-02 18:36:32 +02001#!/usr/bin/env python3
2# Copyright 2020 Canonical Ltd.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain 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,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16import sys
17import logging
18
19sys.path.append("lib")
20
21from ops.charm import CharmBase
22from ops.framework import StoredState, Object
23from ops.main import main
24from ops.model import (
25 ActiveStatus,
26 MaintenanceStatus,
David Garcia5863d3e2020-07-09 13:14:13 +020027 WaitingStatus,
David Garcia18c7a8b2020-07-02 18:36:32 +020028)
29
30from glob import glob
31from pathlib import Path
32from string import Template
33
34logger = logging.getLogger(__name__)
35
36
37class PLACharm(CharmBase):
38 state = StoredState()
39
40 def __init__(self, framework, key):
41 super().__init__(framework, key)
42 self.state.set_default(spec=None)
David Garcia5863d3e2020-07-09 13:14:13 +020043 self.state.set_default(kafka_host=None)
44 self.state.set_default(kafka_port=None)
45 self.state.set_default(mongodb_uri=None)
David Garcia18c7a8b2020-07-02 18:36:32 +020046
47 # Observe Charm related events
48 self.framework.observe(self.on.config_changed, self.on_config_changed)
49 self.framework.observe(self.on.start, self.on_start)
50 self.framework.observe(self.on.upgrade_charm, self.on_upgrade_charm)
51
David Garcia5863d3e2020-07-09 13:14:13 +020052 # Relations
53 self.framework.observe(
54 self.on.kafka_relation_changed, self.on_kafka_relation_changed
55 )
56 self.framework.observe(
57 self.on.mongo_relation_changed, self.on_mongo_relation_changed
58 )
David Garcia5863d3e2020-07-09 13:14:13 +020059
David Garcia18c7a8b2020-07-02 18:36:32 +020060 def _apply_spec(self):
61 # Only apply the spec if this unit is a leader.
David Garcia5863d3e2020-07-09 13:14:13 +020062 unit = self.model.unit
63 if not unit.is_leader():
beierlm838e3fd2020-07-28 09:21:07 -040064 unit.status = ActiveStatus("ready")
David Garcia18c7a8b2020-07-02 18:36:32 +020065 return
David Garcia5863d3e2020-07-09 13:14:13 +020066 if not self.state.kafka_host or not self.state.kafka_port:
67 unit.status = WaitingStatus("Waiting for Kafka")
68 return
69 if not self.state.mongodb_uri:
70 unit.status = WaitingStatus("Waiting for MongoDB")
71 return
David Garcia5863d3e2020-07-09 13:14:13 +020072
73 unit.status = MaintenanceStatus("Applying new pod spec")
74
David Garcia18c7a8b2020-07-02 18:36:32 +020075 new_spec = self.make_pod_spec()
76 if new_spec == self.state.spec:
beierlm838e3fd2020-07-28 09:21:07 -040077 unit.status = ActiveStatus("ready")
David Garcia18c7a8b2020-07-02 18:36:32 +020078 return
79 self.framework.model.pod.set_spec(new_spec)
80 self.state.spec = new_spec
beierlm838e3fd2020-07-28 09:21:07 -040081 unit.status = ActiveStatus("ready")
David Garcia18c7a8b2020-07-02 18:36:32 +020082
83 def make_pod_spec(self):
84 config = self.framework.model.config
85
86 ports = [
beierlm838e3fd2020-07-28 09:21:07 -040087 {"name": "port", "containerPort": config["port"], "protocol": "TCP", },
David Garcia18c7a8b2020-07-02 18:36:32 +020088 ]
89
David Garcia18c7a8b2020-07-02 18:36:32 +020090 config_spec = {
91 "OSMPLA_MESSAGE_DRIVER": "kafka",
David Garcia5863d3e2020-07-09 13:14:13 +020092 "OSMPLA_MESSAGE_HOST": self.state.kafka_host,
93 "OSMPLA_MESSAGE_PORT": self.state.kafka_port,
David Garcia18c7a8b2020-07-02 18:36:32 +020094 "OSMPLA_DATABASE_DRIVER": "mongo",
David Garcia5863d3e2020-07-09 13:14:13 +020095 "OSMPLA_DATABASE_URI": self.state.mongodb_uri,
David Garcia18c7a8b2020-07-02 18:36:32 +020096 "OSMPLA_GLOBAL_LOG_LEVEL": config["log_level"],
David Garcia5863d3e2020-07-09 13:14:13 +020097 "OSMPLA_DATABASE_COMMONKEY": config["database_common_key"],
David Garcia18c7a8b2020-07-02 18:36:32 +020098 }
99
100 spec = {
101 "version": 2,
102 "containers": [
103 {
104 "name": self.framework.model.app.name,
David Garcia5863d3e2020-07-09 13:14:13 +0200105 "image": config["image"],
David Garcia18c7a8b2020-07-02 18:36:32 +0200106 "ports": ports,
David Garcia18c7a8b2020-07-02 18:36:32 +0200107 "config": config_spec,
108 }
109 ],
110 }
111
112 return spec
113
114 def on_config_changed(self, event):
115 """Handle changes in configuration"""
David Garcia18c7a8b2020-07-02 18:36:32 +0200116 self._apply_spec()
David Garcia18c7a8b2020-07-02 18:36:32 +0200117
118 def on_start(self, event):
119 """Called when the charm is being installed"""
David Garcia18c7a8b2020-07-02 18:36:32 +0200120 self._apply_spec()
David Garcia18c7a8b2020-07-02 18:36:32 +0200121
122 def on_upgrade_charm(self, event):
123 """Upgrade the charm."""
124 unit = self.model.unit
125 unit.status = MaintenanceStatus("Upgrading charm")
126 self.on_start(event)
127
David Garcia5863d3e2020-07-09 13:14:13 +0200128 def on_kafka_relation_changed(self, event):
129 unit = self.model.unit
130 if not unit.is_leader():
131 return
132 self.state.kafka_host = event.relation.data[event.unit].get("host")
133 self.state.kafka_port = event.relation.data[event.unit].get("port")
134 self._apply_spec()
135
136 def on_mongo_relation_changed(self, event):
137 unit = self.model.unit
138 if not unit.is_leader():
139 return
140 self.state.mongodb_uri = event.relation.data[event.unit].get(
141 "connection_string"
142 )
143 self._apply_spec()
144
David Garcia18c7a8b2020-07-02 18:36:32 +0200145
146if __name__ == "__main__":
147 main(PLACharm)