This repository was archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathopenstack.py
165 lines (140 loc) · 5.32 KB
/
openstack.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
from distutils.util import strtobool
from charmhelpers.core import hookenv
from charms.reactive import (
hook,
when_all,
when_any,
when_not,
is_flag_set,
toggle_flag,
set_flag,
clear_flag,
)
from charms.reactive.relations import endpoint_from_name
from charms import layer
@when_all("snap.installed.openstackclients")
def set_app_ver():
version = layer.snap.get_installed_version("openstackclients")
hookenv.application_version_set(version)
@when_any(
"config.changed.credentials",
"config.changed.auth-url",
"config.changed.username",
"config.changed.password",
"config.changed.project-name",
"config.changed.user-domain-name",
"config.changed.project-domain-name",
"config.changed.region",
"config.changed.endpoint-tls-ca",
)
def update_creds():
clear_flag("charm.openstack.creds.set")
@hook("upgrade-charm")
def upgrade_charm():
# when the charm is upgraded, recheck the creds in case anything
# has changed or we want to handle any of the fields differently
clear_flag("charm.openstack.creds.set")
@hook("update-status")
def update_status():
# need to recheck creds in case the credentials from Juju have changed
clear_flag("charm.openstack.creds.set")
@hook("pre-series-upgrade")
def pre_series_upgrade():
layer.status.blocked("Series upgrade in progress")
@when_not("charm.openstack.creds.set")
def get_creds():
prev_creds = layer.openstack.get_credentials()
credentials_exist = layer.openstack.update_credentials()
toggle_flag("charm.openstack.creds.set", credentials_exist)
creds = layer.openstack.get_credentials()
if creds != prev_creds:
set_flag("charm.openstack.creds.changed")
@when_all("snap.installed.openstackclients", "charm.openstack.creds.set")
@when_not("endpoint.clients.requests-pending")
@when_not("upgrade.series.in-progress")
def no_requests():
layer.status.active("Ready")
@when_all(
"snap.installed.openstackclients",
"charm.openstack.creds.set",
"endpoint.clients.joined",
)
@when_any(
"endpoint.clients.requests-pending",
"config.changed",
"charm.openstack.creds.changed",
)
@when_not("upgrade.series.in-progress")
def handle_requests():
layer.status.maintenance("Granting integration requests")
clients = endpoint_from_name("clients")
config_change = is_flag_set("config.changed")
config = hookenv.config()
has_octavia = layer.openstack.detect_octavia()
try:
manage_security_groups = strtobool(config["manage-security-groups"])
# use bool() to force True / False instead of 1 / 0
manage_security_groups = bool(manage_security_groups)
except ValueError:
layer.status.blocked("Invalid value for manage-security-groups config")
return
except AttributeError:
# in case manage_security_groups is already bool
manage_security_groups = config["manage-security-groups"]
creds_changed = is_flag_set("charm.openstack.creds.changed")
refresh_requests = config_change or creds_changed
requests = clients.all_requests if refresh_requests else clients.new_requests
for request in requests:
layer.status.maintenance("Granting request for {}".format(request.unit_name))
creds = layer.openstack.get_credentials()
request.set_credentials(**creds)
request.set_lbaas_config(
config["subnet-id"],
config["floating-network-id"],
config["lb-method"],
manage_security_groups,
has_octavia,
lb_enabled=config["lb-enabled"],
internal_lb=config["internal-lb"],
)
def _or_none(val):
if val in (None, "", "null"):
return None
else:
return val
request.set_block_storage_config(
_or_none(config.get("bs-version")),
_or_none(config.get("trust-device-path")),
_or_none(config.get("ignore-volume-az")),
)
layer.openstack.log("Finished request for {}", request.unit_name)
clients.mark_completed()
clear_flag("charm.openstack.creds.changed")
@when_all("charm.openstack.creds.set", "credentials.connected")
@when_not("upgrade.series.in-progress")
def write_credentials():
credentials = endpoint_from_name("credentials")
reformatted_creds = layer.openstack.get_creds_and_reformat()
credentials.expose_credentials(reformatted_creds)
@when_all("charm.openstack.creds.set", "endpoint.loadbalancer.joined")
@when_not("upgrade.series.in-progress")
def create_or_update_loadbalancers():
layer.status.maintenance("Managing load balancers")
lb_clients = endpoint_from_name("loadbalancer")
try:
for request in lb_clients.requests:
if not request.members:
continue
lb = layer.openstack.manage_loadbalancer(
request.application_name, request.members
)
request.set_address_port(lb.fip or lb.address, lb.port)
except layer.openstack.OpenStackError as e:
layer.status.blocked(str(e))
@hook("stop")
def cleanup():
layer.status.maintenance("Cleaning load balancers")
for _, cached_info in layer.openstack.get_all_cached_lbs().items():
lb = layer.openstack.LoadBalancer.load_from_cached(cached_info)
lb.delete()
hookenv.log("loadbalancer '{}' was deleted".format(lb.name))