X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FIM.git;a=blobdiff_plain;f=models%2Fyang%2Fmano-types.yang;h=eb38ec29529889c5b053fc939f144a0019f03103;hp=3fd0b15d9dec93f6e6c22b80bc44aa22abdf86b6;hb=HEAD;hpb=6239ca9f9c4c4c1ac6dae9b8762b52fff5472015 diff --git a/models/yang/mano-types.yang b/models/yang/mano-types.yang index 3fd0b15..d1cbb86 100644 --- a/models/yang/mano-types.yang +++ b/models/yang/mano-types.yang @@ -317,6 +317,16 @@ module mano-types type boolean; default true; } + leaf cloud { + description + "Type of cloud where the charm will be deployed. It only + applies to proxy charms (not native)"; + type enumeration { + enum lxd; + enum k8s; + } + default lxd; + } } } @@ -344,6 +354,16 @@ module mano-types type boolean; default true; } + leaf cloud { + description + "Type of cloud where the charm will be deployed. It only + applies to proxy charms (not native)"; + type enumeration { + enum lxd; + enum k8s; + } + default lxd; + } } } case helm-chart { @@ -359,6 +379,14 @@ module mano-types "; type string; } + leaf helm-version { + description + "Helm version to use for this helm-chart, v3 by default"; + type enumeration { + enum v3; + } + default v3; + } } } leaf metric-service { @@ -1908,6 +1936,7 @@ module mano-types enum GT; // greater than enum LT; // less than enum EQ; // equal + enum NE; // not equal } }