From 4a670965761d4c3d0f6adc3baf7b77ba9b9ea7a8 Mon Sep 17 00:00:00 2001 From: Adam Israel Date: Mon, 11 Dec 2017 13:13:34 -0500 Subject: [PATCH] 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 --- models/yang/mano-types.yang | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; } } -- 2.17.1