X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=examples%2Fdeploy.py;h=d7ca29a51bf17da2653b54ba105eb5956dd8d92e;hb=fa674e918e3298eb00eb036b94a39a8b16a21198;hp=a1ae5039ecce6a8f9eb0efb8e44360b02fad3f69;hpb=6a1c86e07844295a8a71d7c1935c35a8058fe15a;p=osm%2FN2VC.git diff --git a/examples/deploy.py b/examples/deploy.py index a1ae503..d7ca29a 100644 --- a/examples/deploy.py +++ b/examples/deploy.py @@ -1,20 +1,24 @@ """ -Deploy a charm, wait until it's idle, then destroy the unit and application. +This example: + +1. Connects to the current model +2. Resets it +3. Deploy a charm and waits until it's idle +4. Destroys the unit and application """ import asyncio import logging from juju.model import Model, ModelObserver -from juju.client.connection import Connection class MyModelObserver(ModelObserver): - def on_unit_add(self, delta, old, new, model): + async def on_unit_add(self, delta, old, new, model): logging.info( 'New unit added: %s', new.name) - def on_change(self, delta, old, new, model): + async def on_change(self, delta, old, new, model): for unit in model.units.values(): unit_status = unit.data['agent-status']['current'] logging.info( @@ -24,28 +28,39 @@ class MyModelObserver(ModelObserver): 'Destroying unit %s', unit.name) loop.create_task(unit.destroy()) - def on_unit_remove(self, delta, old, new, model): + async def on_unit_remove(self, delta, old, new, model): app_name = old.application app = model.applications[app_name] if not app.units: logging.info( 'Destroying application %s', app.name) loop.create_task(app.destroy()) + await model.block_until( + lambda: len(model.applications) == 0 + ) + await model.disconnect() + model.loop.stop() async def run(): - conn = await Connection.connect_current() - model = Model(conn) + model = Model() + await model.connect_current() + + await model.reset(force=True) model.add_observer(MyModelObserver()) + await model.deploy( 'ubuntu-0', service_name='ubuntu', series='trusty', channel='stable', ) - await model.watch() -logging.basicConfig(level=logging.INFO) +logging.basicConfig(level=logging.DEBUG) +ws_logger = logging.getLogger('websockets.protocol') +ws_logger.setLevel(logging.INFO) loop = asyncio.get_event_loop() -loop.run_until_complete(run()) +loop.set_debug(False) +loop.create_task(run()) +loop.run_forever()