-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathaction.py
53 lines (37 loc) · 1.21 KB
/
action.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
# Copyright 2023 Canonical Ltd.
# Licensed under the Apache V2, see LICENCE file for details.
"""This example:
1. Connects to current model and resets it.
2. Deploys a git unit.
3. Runs an action against the unit.
4. Waits for the action results to come back, then exits.
"""
import asyncio
import logging
from juju.model import Model
async def run_action(unit):
logging.debug("Running action on unit %s", unit.name)
# unit.run() returns a juju.action.Action instance
action = await unit.run_action("add-repo", repo="myrepo")
# wait for the action to complete
action = await action.wait()
logging.debug("Action results: %s", action.results)
async def main():
model = Model()
# connect to current model with current user, per Juju CLI
await model.connect()
app = await model.deploy(
"git",
application_name="git",
series="trusty",
channel="stable",
)
for unit in app.units:
await run_action(unit)
await app.remove()
await model.disconnect()
if __name__ == "__main__":
logging.basicConfig(level=logging.DEBUG)
ws_logger = logging.getLogger("websockets.protocol")
ws_logger.setLevel(logging.INFO)
asyncio.run(main())