Merge "[Bug 270] Copy icons to UI filesystem location when descriptor is copied....
authorvelandy <rajesh.velandy@riftio.com>
Tue, 16 May 2017 20:52:03 +0000 (22:52 +0200)
committerGerrit Code Review <root@osm.etsi.org>
Tue, 16 May 2017 20:52:03 +0000 (22:52 +0200)
BUILD.sh
models/openmano/python/rift/openmano/rift2openmano.py

index ab1e685..4eb0577 100755 (executable)
--- a/BUILD.sh
+++ b/BUILD.sh
@@ -114,10 +114,10 @@ fi
 
 if [[ $PLATFORM == ub16 ]]; then
     PLATFORM_REPOSITORY=${1:-OSM}
-    PLATFORM_VERSION=${2:-4.4.2.0.60195}
+    PLATFORM_VERSION=${2:-4.4.2.1.61839}
 elif [[ $PLATFORM == fc20 ]]; then
     PLATFORM_REPOSITORY=${1:-OSM}  # change to OSM when published
-    PLATFORM_VERSION=${2:-4.4.2.0.60195}
+    PLATFORM_VERSION=${2:-4.4.2.1.61839}
 else
     echo "Internal error: unknown platform $PLATFORM"
     exit 1
index b1d1c8b..61e195b 100755 (executable)
@@ -615,9 +615,12 @@ def rift2openmano_vnfd(rift_vnfd, rift_nsd):
                     # Add Openmano devices
                     device = {}
                     device["type"] = volume.device_type
-                    device["image name"] = volume.image
-                    if volume.has_field("image_checksum"):
-                        device["image checksum"] = volume.image_checksum
+                    if volume.has_field("size"):
+                        device["size"] = volume.size
+                    if volume.has_field("image"):
+                        device["image name"] = volume.image
+                        if volume.has_field("image_checksum"):
+                            device["image checksum"] = volume.image_checksum
                     vnfc["devices"].append(device)   
 
         vnfc_boot_data_init = False