X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=models%2Fyang%2Fmano-types.yang;h=7fc0e50a33f1c2ce2813096a6b85d5efdac0e2db;hb=88bac732521859614e3acfdcc52e328c0ca7168b;hp=3fd0b15d9dec93f6e6c22b80bc44aa22abdf86b6;hpb=6239ca9f9c4c4c1ac6dae9b8762b52fff5472015;p=osm%2FIM.git diff --git a/models/yang/mano-types.yang b/models/yang/mano-types.yang index 3fd0b15..7fc0e50 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,15 @@ module mano-types "; type string; } + leaf helm-version { + description + "Helm version to use for this helm-chart, v3 by default"; + type enumeration { + enum v2; + enum v3; + } + default v3; + } } } leaf metric-service { @@ -1908,6 +1937,7 @@ module mano-types enum GT; // greater than enum LT; // less than enum EQ; // equal + enum NE; // not equal } }