X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=examples%2Fcontroller.py;h=7e7f0dae3a5fdddb3392a3f72755aed1f17a1f35;hb=0a3b685af80dc92e039241b17e712b15994f5769;hp=de0460c20db922e9a369ab6b1c2f244a21b1c628;hpb=6f9041acecc03eaf12a6c8e5d50d20d17a28e87f;p=osm%2FN2VC.git diff --git a/examples/controller.py b/examples/controller.py index de0460c..7e7f0da 100644 --- a/examples/controller.py +++ b/examples/controller.py @@ -4,35 +4,32 @@ This example: 1. Connects to current controller. 2. Creates a new model. 3. Deploys an application on the new model. +4. Disconnects from the model +5. Destroys the model """ import asyncio import logging -from juju.model import Model, ModelObserver from juju.controller import Controller -class MyModelObserver(ModelObserver): - async def on_change(self, delta, old, new, model): - pass - - async def run(): controller = Controller() await controller.connect_current() model = await controller.add_model( - 'libjuju-test', - 'cloud-aws', - 'cloudcred-aws_tvansteenburgh@external_aws-tim', + 'my-test-model', + 'aws', + 'aws-tim', ) await model.deploy( 'ubuntu-0', - service_name='ubuntu', + application_name='ubuntu', series='trusty', channel='stable', ) await model.disconnect() + await controller.destroy_model(model.info.uuid) await controller.disconnect() model.loop.stop()