-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathcrossmodel_relation.py
109 lines (83 loc) · 2.98 KB
/
crossmodel_relation.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
# Copyright 2023 Canonical Ltd.
# Licensed under the Apache V2, see LICENCE file for details.
"""This example:
1. Connects to the current controller
2. Creates two models for consuming and offering
2. Deploys a charm and waits until it reports itself active
3. Creates an offer
4. Lists the offer
5. Deploys a charm and adds relation to the offering url
6. Destroys the units and applications
"""
import asyncio
import tempfile
import time
from logging import getLogger
from juju.controller import Controller
log = getLogger(__name__)
async def main():
controller = Controller()
print("Connecting to controller")
await controller.connect()
try:
print("Creating models")
offering_model = await controller.add_model("test-cmr-1")
consuming_model = await controller.add_model("test-cmr-2")
print("Deploying mysql")
await offering_model.deploy(
"ch:mysql",
application_name="mysql",
series="jammy",
channel="edge",
)
print("Waiting for active")
await offering_model.wait_for_idle(status="active")
print("Adding offer")
await offering_model.create_offer("mysql:db")
offers = await offering_model.list_offers()
await offering_model.block_until(
lambda: all(offer.application_name == "mysql" for offer in offers.results)
)
print(
"Show offers",
", ".join(
"%s: %s" % item
for offer in offers.results
for item in vars(offer).items()
),
)
# TODO (cderici): wordpress charm is somewhat problematic in 3.0,
# this example needs to be revisited.
print("Deploying wordpress")
application_2 = await consuming_model.deploy(
"ch:trusty/wordpress",
application_name="wordpress",
series="xenial",
channel="stable",
)
print("Waiting for executing")
await consuming_model.block_until(
lambda: all(
unit.agent_status == "executing" for unit in application_2.units
)
)
await consuming_model.relate("wordpress", "admin/test-cmr-1.mysql")
print("Exporting bundle")
with tempfile.TemporaryDirectory() as dirpath:
await offering_model.export_bundle(f"{dirpath}/bundle.yaml")
time.sleep(10)
print("Remove SAAS")
await consuming_model.remove_saas("mysql")
print("Removing offer")
await offering_model.remove_offer("admin/test-cmr-1.mysql", force=True)
print("Destroying models")
await controller.destroy_model(offering_model.info.uuid)
await controller.destroy_model(consuming_model.info.uuid)
except Exception:
log.exception("Example failed!")
raise
finally:
print("Disconnecting from controller")
await controller.disconnect()
if __name__ == "__main__":
asyncio.run(main())