Add cluster test config file.
One can modify the test iterations directly here.
Allow for minimum heap size configuration with 'M' or megabyte suffix for onos jvm heap.

Change-Id: I9da9c3a3799c4543512a9cf3ea3f309496df7e80
diff --git a/src/test/utils/CordContainer.py b/src/test/utils/CordContainer.py
index 81df366..0c30833 100644
--- a/src/test/utils/CordContainer.py
+++ b/src/test/utils/CordContainer.py
@@ -265,6 +265,9 @@
                 suffix = heap_size[-1]
                 if suffix == 'M':
                     heap_size_i /= 1024 #convert to gigs
+                    #allow to specific minimum heap size
+                    if heap_size_i == 0:
+                        return heap_size
             except:
                 ##invalid suffix length probably. Fall back to default
                 heap_size = None