From: Adam Israel Date: Mon, 11 Dec 2017 18:13:34 +0000 (-0500) Subject: Specify if a charm is a proxy or not X-Git-Tag: v3.0.3~9 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FIM.git;a=commitdiff_plain;h=4a670965761d4c3d0f6adc3baf7b77ba9b9ea7a8;hp=-c Specify if a charm is a proxy or not Add a new leaf to specify if a Juju charm is a proxy charm or not. Default's to "true" so no changes are required to existing descriptors. This allows testing of new functionality to support full charms targetted at R4 Signed-off-by: Adam Israel --- 4a670965761d4c3d0f6adc3baf7b77ba9b9ea7a8 diff --git a/models/yang/mano-types.yang b/models/yang/mano-types.yang index 8950c7a..654fcbb 100644 --- a/models/yang/mano-types.yang +++ b/models/yang/mano-types.yang @@ -191,7 +191,7 @@ module mano-types } } } - + grouping image-properties { leaf image { description @@ -272,6 +272,11 @@ module mano-types description "Juju charm to use with the VNF or VDU."; type string; } + leaf proxy { + description "Is this a proxy charm?"; + type boolean; + default true; + } uses manotypes:vca-relationships; } }