Initial commit of the voltha installer. There are several things that
need to be cleaned up but the installer is fully functional in test
mode and creates 3 non-clustered VMs with identical voltha installs
until such time as HA is ready. Once HA is ready, the scripts will be
modified to deploy the full HA cluster.
This update partially addresses Epic VOL-6.

Made changes requested by the reviewers.

Change-Id: I083239e1f349136d2ec1e51e09391da341177076
diff --git a/install/PushContainers.sh b/install/PushContainers.sh
new file mode 100755
index 0000000..26d80c3
--- /dev/null
+++ b/install/PushContainers.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+# This script will push all the container images to a registry
+# named vinstall:5000
+
+registry="vinstall:5000"
+
+for i in `cat image-list.cfg`
+do
+docker tag $i $registry/$i
+docker push $registry/$i
+docker rmi $registry/$i
+done
+
+