VOL-385 Changes to the installer build to used the voltha.production.yml
file that directs all vcore logs to fluentd rather than stdout where it
causes docker problems when the logs get very large.

Change-Id: Ic20da3e99c39d1e56d6175f46315c62609de8119
diff --git a/install/CreateInstaller.sh b/install/CreateInstaller.sh
index 6294b20..34828e0 100755
--- a/install/CreateInstaller.sh
+++ b/install/CreateInstaller.sh
@@ -267,11 +267,11 @@
 
 if [ -z "$vVm" -o "$rebuildVoltha" == "yes" ]; then
 	if [ "$testMode" == "yes" ]; then
-		./BuildVoltha.sh $1
+		./BuildVoltha.sh "test"
 		rtrn=$?
 	else
 		# Default to installer mode 
-		./BuildVoltha.sh install
+		./BuildVoltha.sh "install"
 		rtrn=$?
 	fi
 	if [ $rtrn -ne 0 ]; then