From daa1cf9ca3d60c5e5c0313a2cb42778d3934e1dc Mon Sep 17 00:00:00 2001 From: "Sonsino, Ofir (os0695)" Date: Wed, 23 May 2018 17:55:32 +0300 Subject: Scale out fixes Change-Id: I189e563641d267fa082ccab726c9df7d0402c112 Issue-ID: VID-188 Signed-off-by: Sonsino, Ofir (os0695) --- .../org/onap/vid/asdc/parser/ToscaParserImpl2.java | 1 + .../src/main/java/org/onap/vid/model/VfModule.java | 11 +++++++++++ .../new-change-management.controller.js | 19 +++++++++++++------ .../new-change-management/new-change-management.html | 9 +++++---- 4 files changed, 30 insertions(+), 10 deletions(-) (limited to 'vid-app-common/src/main') diff --git a/vid-app-common/src/main/java/org/onap/vid/asdc/parser/ToscaParserImpl2.java b/vid-app-common/src/main/java/org/onap/vid/asdc/parser/ToscaParserImpl2.java index 2200b7988..e75bb3063 100644 --- a/vid-app-common/src/main/java/org/onap/vid/asdc/parser/ToscaParserImpl2.java +++ b/vid-app-common/src/main/java/org/onap/vid/asdc/parser/ToscaParserImpl2.java @@ -269,6 +269,7 @@ public class ToscaParserImpl2 { vfModule.setDescription(group.getDescription()); vfModule.setInvariantUuid(group.getMetadata().getValue(Constants.vfModuleModelInvariantUUID)); vfModule.setUuid(group.getMetadata().getValue(Constants.vfModuleModelUUID)); + vfModule.setProperties(group.getProperties()); return vfModule; } diff --git a/vid-app-common/src/main/java/org/onap/vid/model/VfModule.java b/vid-app-common/src/main/java/org/onap/vid/model/VfModule.java index 9ddff8d8f..f7b4d88f1 100644 --- a/vid-app-common/src/main/java/org/onap/vid/model/VfModule.java +++ b/vid-app-common/src/main/java/org/onap/vid/model/VfModule.java @@ -29,6 +29,7 @@ import java.util.Map.Entry; import org.onap.vid.asdc.beans.tosca.Group; import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.onap.sdc.toscaparser.api.Property; /** * The Class VfModule. @@ -68,6 +69,9 @@ public class VfModule { /** The model customization name. */ private String modelCustomizationName; + /** The model properties. */ + private Map properties; + /** * Instantiates a new vf module. */ @@ -246,6 +250,7 @@ public class VfModule { vfModule.setVersion(group.getMetadata().getVfModuleModelVersion()); vfModule.setCustomizationUuid(group.getMetadata().getVfModuleModelCustomizationUUID()); vfModule.setModelCustomizationName (modelCustomizationName); + //?vfModule.setProperties(group.getProperties()); if (group.getProperties().containsKey("volume_group")) { if (group.getProperties().get("volume_group") != null) { @@ -305,4 +310,10 @@ public class VfModule { }*/ return vfModule; } + public Map getProperties() { + return properties; + } + public void setProperties(Map properties) { + this.properties = properties; + } } diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js index 90d158af9..f76a64b06 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js @@ -60,14 +60,21 @@ _.each(response.data.vnfs, function (vnf) { if (newVNFName["invariant-id"] === vnf.invariantUuid) { availableVersions.push(extractVNFModel(vnf, response.data.service, newVNFName)); - newVNFName.vfModules = vnf.vfModules; //for scale out screen - newVNFName.category = response.data.service.category; - newVNFName.groupModules = _.groupBy(newVNFName.vfModules, "customizationUuid"); - _.forEach(newVNFName.vfModules, function(mdl, key){ - mdl.scale = false; //defaults to not scale unless user changes it - }); + if(service.uuid === newVNFName["service-instance-node"][0].properties["model-version-id"]) { + newVNFName.vfModules = vnf.vfModules; + newVNFName.category = response.data.service.category; + newVNFName.groupModules = _.groupBy(newVNFName.vfModules, "customizationUuid"); + _.forEach(newVNFName.vfModules, function (mdl, key) { + mdl.scale = false; //defaults to not scale unless user changes it + if(mdl.properties && mdl.properties.max_vf_module_instances) { + mdl.scalable = mdl.properties.max_vf_module_instances.value - newVNFName.groupModules[mdl.customizationUuid].length > 0; + }else{ + mdl.scalable = false; + } + }); + } } }); var versions = _.uniqBy(availableVersions, 'modelInfo.modelVersion'); diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html index 6a47de0a0..9954d5aee 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html +++ b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html @@ -107,7 +107,7 @@
-
+
+
{{vnf.isOpen ? '-' : '+'}}
{{vnf['service-instance-node'][0].properties['service-instance-name']}}
{{vnf.name}}
{{vnf['availableVersions'][0].modelInfo.modelVersion}}
@@ -127,12 +127,13 @@
{{moduleArr[0].modelCustomizationName}}
{{moduleArr.length}}
-
N/A
-
+
N/A
+
{{moduleArr[0].uuid}}
-
+
N/A
+
-- cgit 1.2.3-korg