From: David Garcia Date: Tue, 7 Sep 2021 09:15:48 +0000 (+0200) Subject: Allow the deployment of privileged KDUs X-Git-Tag: release-v11.0-start~5 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=commitdiff_plain;h=76ed75796553cb3e6bd93a20140d28c21894d8ee;hp=eacf5a7724815fb33802ceb0af246dfc959eb021;ds=sidebyside Allow the deployment of privileged KDUs Change-Id: I7fac53669d08119be4f8da49509c6ee418c1df69 Signed-off-by: David Garcia --- diff --git a/n2vc/libjuju.py b/n2vc/libjuju.py index 64276d6..b897bc6 100644 --- a/n2vc/libjuju.py +++ b/n2vc/libjuju.py @@ -558,7 +558,7 @@ class Libjuju: controller = await self.get_controller() model = await self.get_model(controller, model_name) try: - await model.deploy(uri) + await model.deploy(uri, trust=True) if wait: await JujuModelWatcher.wait_for_model(model, timeout=timeout) self.log.debug("All units active in model {}".format(model_name))