X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=docs%2Fnarrative%2Fmodel.rst;h=57dbc810f07aab33b339f418b05d6b2a57ea4b80;hb=546f9ef4d42473d33fcceb04e9ab410c7a4ec7a4;hp=74f7e844143c9420f76f69f77506239455c0de69;hpb=5fef7503b13f145adc7cd4ee31c2d684e09a6a85;p=osm%2FN2VC.git diff --git a/docs/narrative/model.rst b/docs/narrative/model.rst index 74f7e84..57dbc81 100644 --- a/docs/narrative/model.rst +++ b/docs/narrative/model.rst @@ -142,6 +142,10 @@ can be used to deploy a charm to a specific machine or container. from juju.model import Model + MB = 1 + GB = 1024 + + model = Model() await model.connect_current() @@ -174,6 +178,15 @@ can be used to deploy a charm to a specific machine or container. to=machine3.id ) + # remove application + await application.remove() + + # destroy machines - note that machine3 must be destroyed before machine2 + # since it's a container on machine2 + await machine3.destroy(force=True) + await machine2.destroy(force=True) + await machine1.destroy(force=True) + Reacting to Changes in a Model ------------------------------