-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathexpose-application.py
85 lines (66 loc) · 2.55 KB
/
expose-application.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
# Copyright 2023 Canonical Ltd.
# Licensed under the Apache V2, see LICENCE file for details.
"""This example:
1. Connects to the current model.
2. Deploys a charm and waits until it reports itself active.
3. Demonstrates exposing application endpoints to space and CIDR combinations.
3. Demonstrates unexposing application endpoints.
NOTE: this test must be run against a 2.9 controller.
"""
import asyncio
from juju.application import ExposedEndpoint
from juju.model import Model
async def main():
model = Model()
print("Connecting to model")
# connect to current model with current user, per Juju CLI
await model.connect()
try:
print("Deploying ubuntu")
application = await model.deploy(
"ch:ubuntu",
application_name="ubuntu",
series="jammy",
channel="stable",
)
print("Waiting for active")
await model.block_until(
lambda: all(unit.workload_status == "active" for unit in application.units)
)
print("Expose all opened port ranges")
await application.expose()
print(
"Expose all opened port ranges to the CIDRs that correspond to a list of spaces"
)
await application.expose(
exposed_endpoints={"": ExposedEndpoint(to_spaces=["alpha"])}
)
print("Expose all opened port ranges to a list of CIDRs")
await application.expose(
exposed_endpoints={"": ExposedEndpoint(to_cidrs=["10.0.0.0/24"])}
)
print("Expose all opened port ranges to a list of spaces and CIDRs")
await application.expose(
exposed_endpoints={
"": ExposedEndpoint(to_spaces=["alpha"], to_cidrs=["10.0.0.0/24"])
}
)
print("Expose individual endpoints to different space/CIDR combinations")
await application.expose(
exposed_endpoints={
"": ExposedEndpoint(to_spaces=["alpha"], to_cidrs=["10.0.0.0/24"]),
"ubuntu": ExposedEndpoint(to_cidrs=["10.42.42.0/24"]),
}
)
# TODO (cderici) : this part needs to be revisited
print("Unexpose individual endpoints (other endpoints remain exposed)")
await application.unexpose(exposed_endpoints=["ubuntu"])
print("Unexpose application")
await application.unexpose()
print("Removing ubuntu")
await application.remove()
finally:
print("Disconnecting from model")
await model.disconnect()
if __name__ == "__main__":
asyncio.run(main())