-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathadd_model.py
68 lines (50 loc) · 1.69 KB
/
add_model.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
# Copyright 2023 Canonical Ltd.
# Licensed under the Apache V2, see LICENCE file for details.
"""This example:
1. Creates a model on the current controller
2. Deploys a charm to it.
3. Attempts to ssh into the charm
"""
import asyncio
import uuid
from logging import getLogger
from juju import utils
from juju.controller import Controller
LOG = getLogger(__name__)
async def main():
controller = Controller()
print("Connecting to controller")
# connect to current controller with current user, per Juju CLI
await controller.connect()
try:
model_name = f"addmodeltest-{uuid.uuid4()}"
print(f"Adding model {model_name}")
model = await controller.add_model(model_name)
print("Deploying ubuntu")
application = await model.deploy(
"ch:ubuntu",
application_name="ubuntu",
series="jammy",
channel="stable",
)
print("Waiting for active")
await asyncio.sleep(10)
await model.wait_for_idle(status="active")
print("Verifying that we can ssh into the created model")
ret = await utils.execute_process(
"juju", "ssh", "-m", model_name, "ubuntu/0", "ls /", log=LOG
)
assert ret
print("Removing ubuntu")
await application.remove()
print("Destroying model")
await controller.destroy_model(model.info.uuid)
except Exception:
LOG.exception(f"Test failed! Model {model_name} may not be cleaned up")
finally:
print("Disconnecting from controller")
if model:
await model.disconnect()
await controller.disconnect()
if __name__ == "__main__":
asyncio.run(main())